mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-12 13:07:01 +07:00
8 lines
141 B
Python
8 lines
141 B
Python
__author__ = 'ktisha'
|
|
|
|
class Child(Base):
|
|
def __init__(self):
|
|
super(Child, self).__init__()
|
|
|
|
def <caret>f():
|
|
test = 1 |