mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-28 15:20:54 +07:00
9 lines
249 B
Python
9 lines
249 B
Python
class A(Aa):
|
|
@property
|
|
def <warning descr="Getter signature should be (self)">x</warning>(self, r):
|
|
return r
|
|
|
|
@x.setter
|
|
def <warning descr="Setter signature should be (self, value)">x<caret></warning>():
|
|
self._x = ""
|