Files
openide/python/pluginResources/intentionDescriptions/PyConvertMethodToPropertyIntention/after.py.template
T
2019-10-09 13:06:32 +00:00

13 lines
174 B
Plaintext

class MyClass(object):
"""
My class to show intention.
"""
def __init__(self):
self._x = None
@property
def x(self):
return self._x
x = MyClass().x