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