mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 20:07:01 +07:00
16 lines
191 B
Python
16 lines
191 B
Python
class A:
|
|
def __init__(self):
|
|
self.x = 1
|
|
|
|
async def foo(self, a):
|
|
await self.y(1, a)
|
|
|
|
async def y(self, param, a):
|
|
pass
|
|
|
|
|
|
# Some comment
|
|
|
|
class B:
|
|
pass
|