Files

13 lines
183 B
Python

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