From 8bf7664e02b6901ffc0ad750a2ac04aba3c2f038 Mon Sep 17 00:00:00 2001 From: "open-swe[bot]" Date: Fri, 1 Aug 2025 22:54:38 +0000 Subject: [PATCH] Apply patch [skip ci] --- libs/langgraph/langgraph/pregel/_runner.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/langgraph/langgraph/pregel/_runner.py b/libs/langgraph/langgraph/pregel/_runner.py index 9a6f117e0..25935250c 100644 --- a/libs/langgraph/langgraph/pregel/_runner.py +++ b/libs/langgraph/langgraph/pregel/_runner.py @@ -36,7 +36,7 @@ from langgraph.errors import GraphBubbleUp, GraphInterrupt from langgraph.pregel._algo import Call from langgraph.pregel._executor import Submit from langgraph.pregel._retry import arun_with_retry, run_with_retry -from langgraph.pregel._scratchpad import PregelScratchpad +from langgraph.types import PregelScratchpad from langgraph.types import ( CachePolicy, PregelExecutableTask, @@ -758,3 +758,4 @@ async def _acall_impl( destination.set_exception(RuntimeError("Task not scheduled")) except Exception as exc: destination.set_exception(exc) +