This commit is contained in:
Tat Dat Duong
2025-06-26 01:30:10 +02:00
parent 565d52975c
commit 263a583f01
+3 -3
View File
@@ -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