mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 08:00:18 +07:00
GitOrigin-RevId: d4a90a8da56ca889cf380aa5bc72ac82b0716abc
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 |