mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 00:50:53 +07:00
9 lines
153 B
Python
9 lines
153 B
Python
class SomeClass(object):
|
|
""" Awesome class
|
|
|
|
@ivar bar: great stuff
|
|
@type bar: string
|
|
"""
|
|
|
|
def __init__(self):
|
|
self.bar = None |