Files
openide/python/resources/intentionDescriptions/PyConvertMethodToPropertyIntention/before.py.template
T

12 lines
164 B
Plaintext

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