From 95318079249b5abe4640fa5fff43d47364094459 Mon Sep 17 00:00:00 2001 From: "open-swe[bot]" Date: Fri, 1 Aug 2025 22:53:44 +0000 Subject: [PATCH] Apply patch [skip ci] --- libs/langgraph/langgraph/managed/base.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/langgraph/langgraph/managed/base.py b/libs/langgraph/langgraph/managed/base.py index 3b5de24d5..41a009908 100644 --- a/libs/langgraph/langgraph/managed/base.py +++ b/libs/langgraph/langgraph/managed/base.py @@ -8,7 +8,7 @@ from typing import ( from typing_extensions import TypeGuard -from langgraph.pregel._scratchpad import PregelScratchpad +from langgraph.types import PregelScratchpad V = TypeVar("V") U = TypeVar("U") @@ -30,3 +30,4 @@ def is_managed_value(value: Any) -> TypeGuard[ManagedValueSpec]: ManagedValueMapping = dict[str, ManagedValueSpec] +