mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 08:00:18 +07:00
14 lines
276 B
Python
14 lines
276 B
Python
from SuperClass import SuperClass
|
|
import sys
|
|
|
|
|
|
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
|
|
print(sys.api_version)
|
|
|