From a91dbf9b70f7cd397e6ea666f87b390e2ecb51ad Mon Sep 17 00:00:00 2001 From: Nuno Campos Date: Thu, 21 Nov 2024 08:10:39 -0800 Subject: [PATCH] Lint --- libs/langgraph/langgraph/pregel/__init__.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/libs/langgraph/langgraph/pregel/__init__.py b/libs/langgraph/langgraph/pregel/__init__.py index 52cd2bf09..e714afe21 100644 --- a/libs/langgraph/langgraph/pregel/__init__.py +++ b/libs/langgraph/langgraph/pregel/__init__.py @@ -541,11 +541,6 @@ class Pregel(PregelProtocol): next_tasks[tid].writes.append((k, v)) if tasks := [t for t in next_tasks.values() if t.writes]: apply_writes(saved.checkpoint, channels, tasks, None) - print( - "next_tasks", - [(t.id, t.name, t.input, bool(t.writes)) for t in next_tasks.values()], - ) - print("pending_writes", saved.pending_writes) # assemble the state snapshot return StateSnapshot( read_channels(channels, self.stream_channels_asis),