mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 04:50:58 +07:00
7 lines
153 B
Python
7 lines
153 B
Python
from SuperClass import Parent
|
|
class Child(Parent):
|
|
def my_method(self, foo):
|
|
bar = foo
|
|
|
|
def my_method_2(self, foo):
|
|
bar = foo |