mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 11:53:49 +07:00
5 lines
176 B
Python
5 lines
176 B
Python
def example(y):
|
|
return [x async for x in <error descr="'await' outside async function">await</error> y]
|
|
|
|
async def example_correct(y):
|
|
return [x async for x in await y] |