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