From 5e9e7b79fe801c212e1d9f12def2f66a09360505 Mon Sep 17 00:00:00 2001 From: Nuno Campos Date: Mon, 31 Mar 2025 17:36:00 -0700 Subject: [PATCH] Lint --- libs/langgraph/langgraph/utils/future.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/langgraph/langgraph/utils/future.py b/libs/langgraph/langgraph/utils/future.py index a895fe885..a311133df 100644 --- a/libs/langgraph/langgraph/utils/future.py +++ b/libs/langgraph/langgraph/utils/future.py @@ -164,7 +164,7 @@ def _ensure_future( elif EAGER_NOT_SUPPORTED or lazy: return loop.create_task(coro_or_future, name=name, context=context) else: - return asyncio.eager_task_factory( # type:ignore + return asyncio.eager_task_factory( loop, coro_or_future, name=name, context=context ) except RuntimeError: