mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-21 20:54:49 +07:00
7 lines
162 B
Python
7 lines
162 B
Python
class A:
|
|
def __init__(self):
|
|
self.x = 1
|
|
|
|
def foo(self):
|
|
a = self.<caret><warning descr="Unresolved attribute reference 'y' for class 'A'">y</warning>
|