mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-23 10:14:50 +07:00
10 lines
166 B
Python
10 lines
166 B
Python
|
|
class SomeClass(object):
|
|
""" Awesome class
|
|
|
|
@ivar someVar: great stuff
|
|
@type someVar: string
|
|
"""
|
|
|
|
def __init__(self):
|
|
self.someVar = None |