mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
10 lines
87 B
Python
10 lines
87 B
Python
|
|
|
|
async def bar():
|
|
return "hey"
|
|
|
|
|
|
async def foo():
|
|
await bar()
|
|
return True
|