basedmypy icon indicating copy to clipboard operation
basedmypy copied to clipboard

Warn when `super().__init__` isn't called

Open KotlinIsland opened this issue 1 year ago • 0 comments

class A:
	def init():
		... # no error
class B: 
    def iniy():
    	... # no error
class C(A, B): ...# error, B init not called

print(C.mro())

KotlinIsland avatar May 06 '24 03:05 KotlinIsland