Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
python
/
testData
/
quickFixes
/
PyUpdatePropertySignatureQuickFixTest
/
setter.py
blob: 50de213c69a42fbf266f98be563e1177db05f028 [
file
] [
log
] [
blame
]
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
=
""