From 38bbe67469d2fc35ebc8e5e4a13178685f1263ac Mon Sep 17 00:00:00 2001 From: Vadym Barda Date: Thu, 23 Jan 2025 11:24:18 -0500 Subject: [PATCH] langgraph: remove print (#3167) --- 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 bc6d6b645..d608f94f1 100644 --- a/libs/langgraph/langgraph/types.py +++ b/libs/langgraph/langgraph/types.py @@ -476,7 +476,6 @@ def interrupt(value: Any) -> Any: # find current resume value if scratchpad.null_resume is not None: assert len(scratchpad.resume) == idx, (scratchpad.resume, idx) - print("consume null resume", scratchpad.null_resume) v = scratchpad.consume_null_resume() scratchpad.resume.append(v) conf[CONFIG_KEY_SEND]([(RESUME, scratchpad.resume)])