Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
nfcampos committed Dec 5, 2024
1 parent 1f745ca commit ccd8920
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions libs/langgraph/langgraph/pregel/write.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand All @@ -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):
Expand Down

0 comments on commit ccd8920

Please sign in to comment.