def example(x): async for i in await x: yield i async def example_correct(x): async for i in await x: yield i