mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-13 14:36:58 +07:00
12 lines
229 B
Python
12 lines
229 B
Python
from SuperClass import Parent
|
|
class Child(Parent):
|
|
def my_method(self, foo):
|
|
"""
|
|
Eats eggs
|
|
:param foo: eggs
|
|
"""
|
|
bar = foo
|
|
|
|
@classmethod
|
|
def my_class_method():
|
|
print("Q") |