mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-26 19:06:24 +07:00
added create property quick fix
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
|
||||
class A:
|
||||
def __init__(self):
|
||||
self._x = 1
|
||||
|
||||
def _foo(self):
|
||||
print(self._x)
|
||||
|
||||
a = A()
|
||||
a._foo()
|
||||
|
||||
print(a._<caret>x)
|
||||
Reference in New Issue
Block a user