Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
python
/
testData
/
quickFixes
/
PyUpdatePropertySignatureQuickFixTest
/
setterLessParam.py
blob: 72da857fa22d9b620f616f8228925c857df9fb38 [
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)"
>
x
<
caret
></
warning
>():
self
.
_x
=
""