mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-15 20:26:04 +07:00
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>
|