diff --git a/aiuti/asyncio.py b/aiuti/asyncio.py index 485dac8..3c8283a 100644 --- a/aiuti/asyncio.py +++ b/aiuti/asyncio.py @@ -261,7 +261,7 @@ async def _queue_elements() -> None: future = pool.submit(_set_loop_and_queue_elements, loop) try: while (i := q.get()) is not _DONE: - yield i # type: ignore + yield i finally: future.result()