Lets say I have
class Super(): def method1(): pass class Sub(Super): def method1(param1, param2, param3): stuff
Is this corr
Python will allow this, but if method1() is intended to be executed from external code then you may want to reconsider this, as it violates LSP and so won't always work properly.
method1()