If there's a class
Class A:
def __init__(arg1, kwarg1=...):
...something happens here with args and kwargs
is there a way to add another argument by monkey patching this class? How to keep everything that happens in it's __init__
in place, without repeating it anywhere?
this worked: