diff --git a/libs/langgraph/langgraph/pregel/write.py b/libs/langgraph/langgraph/pregel/write.py index 8e9cf35b3..a4a42c3f0 100644 --- a/libs/langgraph/langgraph/pregel/write.py +++ b/libs/langgraph/langgraph/pregel/write.py @@ -136,7 +136,6 @@ def do_write( raise InvalidUpdateError("PASSTHROUGH value must be replaced") # assemble writes tuples: list[tuple[str, Any]] = [] - print(writes) for w in writes: if isinstance(w, Send): tuples.append((PUSH if FF_SEND_V2 else TASKS, w)) @@ -152,7 +151,6 @@ def do_write( tuples.append((w.channel, value)) else: raise ValueError(f"Invalid write entry: {w}") - print(tuples, require_at_least_one_of) # assert required channels if require_at_least_one_of is not None: if not {chan for chan, _ in tuples} & set(require_at_least_one_of):