mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 09:46:39 +07:00
GitOrigin-RevId: fa2b7329d462abaf71eb61d33f6b30c931a26a2f
6 lines
164 B
Python
6 lines
164 B
Python
from SuperClass import Parent
|
|
|
|
class Child(Parent):
|
|
async def async_method(self):
|
|
"""An async method that should be pulled up"""
|
|
return "result" |