mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 02:24:00 +07:00
6 lines
155 B
Python
6 lines
155 B
Python
from SuperClass import SuperClass
|
|
|
|
class AnyClass(SuperClass):
|
|
def this_should_be_in_super(self, some_argument):
|
|
self.argument = some_argument
|