mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 10:51:06 +07:00
9 lines
259 B
Python
9 lines
259 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)"><caret>x</warning>(self, r, t):
|
|
self._x = ""
|