@313V I’ve found that defining __new__
seems to break the signature of the class and all subclasses - it uses the signature of __new__
instead of __init__
, although the former is generally *args,**kwargs
or something similar. So there’s a couple of places where I work around that problem. I don’t know if there’s a better solution - I haven’t found anything online.
2 Likes