mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 03:20:56 +07:00
9 lines
172 B
Python
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 |