Files
2025-09-08 13:06:06 +00:00

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"