Python 3 super() check for flake8
pip install flake8-super
No configuration required
# Error
class SomeClass:
def __init__(self):
super(SomeClass, self).__init__() # SPR100 Use `super()` instead of `super(__class__, self)`
# Good
class SomeClass:
def __init__(self):
super().__init__()
code | description |
---|---|
SPR100 | Use super() instead of super(__class__, self) |