mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 11:53:49 +07:00
13 lines
224 B
Python
13 lines
224 B
Python
class Base:
|
|
def method(self, foo, bar):
|
|
"""
|
|
:param foo: description
|
|
:param bar: description
|
|
"""
|
|
pass
|
|
|
|
|
|
class Sub(Base):
|
|
def met<the_ref>hod(self, param1, param2):
|
|
pass
|