From 263a583f01fc31619b8a630898877ea31aec0859 Mon Sep 17 00:00:00 2001 From: Tat Dat Duong Date: Wed, 25 Jun 2025 02:32:05 +0200 Subject: [PATCH] Fix lint --- libs/langgraph/langgraph/pregel/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libs/langgraph/langgraph/pregel/__init__.py b/libs/langgraph/langgraph/pregel/__init__.py index a6e2773b9..7d5646b85 100644 --- a/libs/langgraph/langgraph/pregel/__init__.py +++ b/libs/langgraph/langgraph/pregel/__init__.py @@ -219,9 +219,9 @@ class NodeBuilder: *channels: str, ) -> Self: """Adds the specified channels to read from, without subscribing to them.""" - assert isinstance( - self._channels, list - ), "Cannot read additional channels when subscribed to single channels" + assert isinstance(self._channels, list), ( + "Cannot read additional channels when subscribed to single channels" + ) self._channels.extend(channels) return self