From 3c752238c54de60e97ccc865c8d8890983596439 Mon Sep 17 00:00:00 2001 From: G Sreejith <139740235+gsreejith123@users.noreply.github.com> Date: Fri, 5 Jul 2024 21:50:33 +0530 Subject: [PATCH] core[patch]: Fix typo in docstring (graphm -> graph) (#23910) Changes has been as per the request Replaced graphm with graph --- libs/core/langchain_core/runnables/graph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/core/langchain_core/runnables/graph.py b/libs/core/langchain_core/runnables/graph.py index 6cbe0bdc261..31f3cfcb1b6 100644 --- a/libs/core/langchain_core/runnables/graph.py +++ b/libs/core/langchain_core/runnables/graph.py @@ -246,7 +246,7 @@ class Graph: return node def remove_node(self, node: Node) -> None: - """Remove a node from the graphm and all edges connected to it.""" + """Remove a node from the graph and all edges connected to it.""" self.nodes.pop(node.id) self.edges = [ edge