mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-21 12:14:37 +07:00
GitOrigin-RevId: 9862d18848b3a826ba11e9c0e15e56a2c94bcc9e
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] |