mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 04:37:32 +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 |