From fdf7bad988210dccbb566b5020c7d4d5e36f96f3 Mon Sep 17 00:00:00 2001 From: Nuno Campos Date: Thu, 19 Sep 2024 09:19:00 -0700 Subject: [PATCH] Remove ignore for 3.9 --- libs/checkpoint-postgres/langgraph/checkpoint/postgres/aio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/checkpoint-postgres/langgraph/checkpoint/postgres/aio.py b/libs/checkpoint-postgres/langgraph/checkpoint/postgres/aio.py index eeee92290..969965084 100644 --- a/libs/checkpoint-postgres/langgraph/checkpoint/postgres/aio.py +++ b/libs/checkpoint-postgres/langgraph/checkpoint/postgres/aio.py @@ -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: