-
-
Notifications
You must be signed in to change notification settings - Fork 692
Modernize super() calls #3547
Copy link
Copy link
Open
Labels
Description
Should we replace super(ClassName, self) with super() across the codebase?
There is no need to pass the class and instance explicitly.
Example - super(DummyModel, self).__init__() becomes super().__init__()
There are over 130 occurrences of this, which can be simplified
Reactions are currently unavailable