Skip to content

Commit

Permalink
Fix 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
nfcampos committed Sep 19, 2024
1 parent 6c0339c commit 95304d6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libs/checkpoint-sqlite/langgraph/checkpoint/sqlite/aio.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,8 @@ def list(
while True:
try:
yield asyncio.run_coroutine_threadsafe(
anext(aiter_), self.loop
anext(aiter_), # type: ignore[name-defined]
self.loop,
).result()
except StopAsyncIteration:
break
Expand Down

0 comments on commit 95304d6

Please sign in to comment.