From 8a67a5ac25be39539071349e5dbd469dda845c10 Mon Sep 17 00:00:00 2001 From: Tat Dat Duong Date: Wed, 25 Jun 2025 02:48:25 +0200 Subject: [PATCH] Fix format --- 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 d8b2e3f8a..d6cc3e432 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