mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 03:21:12 +07:00
10 lines
232 B
Python
10 lines
232 B
Python
from SuperClass import SuperClass
|
|
|
|
from sys import argv
|
|
|
|
class AnyClass(SuperClass):
|
|
def this_should_be_in_super(self, some_argument):
|
|
if not self.args:
|
|
self.args = argv
|
|
self.argument = some_argument
|