mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-27 13:14:18 +07:00
GitOrigin-RevId: 9862d18848b3a826ba11e9c0e15e56a2c94bcc9e
11 lines
282 B
Python
11 lines
282 B
Python
async def my_function():
|
|
def subfunction(x):
|
|
<error descr="'await' outside async function">await</error> x
|
|
|
|
async def my_function_correct():
|
|
async def subfunction(x):
|
|
await x
|
|
|
|
def my_non_async_function_correct():
|
|
async def subfunction(x):
|
|
await x |