mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 17:20:55 +07:00
otherwise it's easy to overlook it especially considering that there is also (confusingly) PyAddImportTest
12 lines
214 B
Python
12 lines
214 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>(1, a)
|
|
|
|
# Some comment
|
|
|
|
class B:
|
|
pass
|