Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
resources
/
intentionDescriptions
/
PyConvertMethodToPropertyIntention
/
after.py.template
blob: 1c804030145129cefa96e9819a49e390fd86450d [
file
] [
log
] [
blame
]
class
MyClass
(
object
):
"""
My class to show intention.
"""
def
__init__
(
self
):
self
.
_x
=
None
@property
def
x
(
self
):
return
self
.
_x
x
=
MyClass
().
x