mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-14 18:05:27 +07:00
8 lines
189 B
Python
8 lines
189 B
Python
def example(x):
|
|
async for i in <error descr="'await' outside async function">await</error> x:
|
|
yield i
|
|
|
|
async def example_correct(x):
|
|
async for i in await x:
|
|
yield i
|