From f028984b2ee3664869bf16a96796ff1b0ff0b085 Mon Sep 17 00:00:00 2001 From: Vadym Barda Date: Wed, 4 Dec 2024 19:07:50 -0500 Subject: [PATCH] langgraph: remove print (#2640) --- libs/langgraph/langgraph/types.py | 1 - 1 file changed, 1 deletion(-) diff --git a/libs/langgraph/langgraph/types.py b/libs/langgraph/langgraph/types.py index 67c7e53f8..bd6e94d19 100644 --- a/libs/langgraph/langgraph/types.py +++ b/libs/langgraph/langgraph/types.py @@ -350,7 +350,6 @@ def interrupt(value: Any) -> Any: if tid == NULL_TASK_ID and c == RESUME: assert len(scratchpad["resume"]) == idx, (scratchpad["resume"], idx) scratchpad["resume"].append(v) - print("saving:", scratchpad["resume"]) conf[CONFIG_KEY_SEND]([(RESUME, scratchpad["resume"])]) return v # no resume value found