Remove ignore for 3.9

This commit is contained in:
Nuno Campos
2024-09-19 09:19:00 -07:00
parent faa652cbf4
commit fdf7bad988
@@ -373,7 +373,7 @@ class AsyncPostgresSaver(BasePostgresSaver):
while True:
try:
yield asyncio.run_coroutine_threadsafe(
anext(aiter_), # type: ignore[name-defined]
anext(aiter_),
self.loop,
).result()
except StopAsyncIteration: