mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-22 11:29:28 +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
|