mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-13 14:36:58 +07:00
16 lines
214 B
Plaintext
16 lines
214 B
Plaintext
class MyClass(object):
|
|
"""
|
|
My class to show intention.
|
|
"""
|
|
|
|
def __init__(self):
|
|
self.a = 1
|
|
|
|
@staticmethod
|
|
def my_static_method():
|
|
import code
|
|
import time
|
|
|
|
time.sleep(100)
|
|
print code
|