class Parent():
def foo(self, arg1):
...
class Child(Parent):
def foo(self, arg1, arg2):
...
Linters (I'm using Pylint) complain about this piece of code because Child().foo
has different arguments than Parent().foo
What's the correct method of doing this kind of thing?