mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-30 04:45:20 +07:00
GitOrigin-RevId: 8b2286a3f50d7b0d00ebbb0befc9811a80f7b304
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
|