From 2b77fdabee4b8de8bdcf88c304664a1bcbe978b7 Mon Sep 17 00:00:00 2001 From: Nuno Campos Date: Tue, 3 Dec 2024 14:01:26 -0800 Subject: [PATCH] Lint --- libs/langgraph/langgraph/func/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/langgraph/langgraph/func/__init__.py b/libs/langgraph/langgraph/func/__init__.py index d608f41f7..2dda24754 100644 --- a/libs/langgraph/langgraph/func/__init__.py +++ b/libs/langgraph/langgraph/func/__init__.py @@ -8,12 +8,13 @@ from typing import ( Awaitable, Callable, Optional, - ParamSpec, TypeVar, Union, overload, ) +from typing_extensions import ParamSpec + from langgraph.channels.ephemeral_value import EphemeralValue from langgraph.channels.last_value import LastValue from langgraph.checkpoint.base import BaseCheckpointSaver