mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +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
|