Files
openide/python/testData/intentions/PyConvertMethodToPropertyIntentionTest/simple_after.py
T

13 lines
174 B
Python

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