mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 13:39:36 +07:00
8 lines
103 B
Python
8 lines
103 B
Python
async def foo(x):
|
|
y = await bar(x)
|
|
return y
|
|
|
|
|
|
async def bar(x_new):
|
|
return await x_new + 1
|