mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 02:59:33 +07:00
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 |