Files
2024-10-29 21:03:06 +00:00

9 lines
172 B
Python

class SomeClass(object):
""" Awesome class
:ivar someVar: great stuff
:type someVar: string
"""
def __init__(self):
self.some<caret>Var = None