mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 17:20:55 +07:00
7 lines
156 B
Python
7 lines
156 B
Python
class SuperClass(object):
|
|
def __init__(self):
|
|
pass
|
|
|
|
def this_should_be_in_super(self, some_argument):
|
|
self.argument = some_argument
|