mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 00:20:55 +07:00
otherwise it's easy to overlook it especially considering that there is also (confusingly) PyAddImportTest
10 lines
207 B
Python
10 lines
207 B
Python
class A():
|
|
def __init__(self):
|
|
a = 1
|
|
|
|
class C(A):
|
|
def <warning descr="Call to __init__ of super class is missed">__ini<caret>t__</warning>(self):
|
|
pass
|
|
|
|
def foo(self):
|
|
pass |