mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-12 13:07:01 +07:00
otherwise it's easy to overlook it especially considering that there is also (confusingly) PyAddImportTest
9 lines
214 B
Python
9 lines
214 B
Python
class A:
|
|
def __init__(self, a, b):
|
|
self.a = a
|
|
self.b = b
|
|
|
|
class B(A):
|
|
def foo(self):
|
|
return self.<caret><warning descr="Unresolved attribute reference 'x' for class 'B'">x</warning>
|