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