From 3e454d75682845851d966e573876648740e04018 Mon Sep 17 00:00:00 2001 From: Nuno Campos Date: Thu, 11 Jul 2024 09:38:14 -0700 Subject: [PATCH] core: fix docstring (#24129) --- libs/core/langchain_core/runnables/graph.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/core/langchain_core/runnables/graph.py b/libs/core/langchain_core/runnables/graph.py index e76a0a0f178..cfd798580e5 100644 --- a/libs/core/langchain_core/runnables/graph.py +++ b/libs/core/langchain_core/runnables/graph.py @@ -136,8 +136,8 @@ def node_data_str(id: str, data: Union[Type[BaseModel], RunnableType]) -> str: """Convert the data of a node to a string. Args: - node: The node to convert. - html: Whether to format the data as HTML rich text. + id: The node id. + data: The node data. Returns: A string representation of the data.