From 3f3bc5765be12eeb0958c2e3b4e9e0b75da99bf2 Mon Sep 17 00:00:00 2001 From: xfrnk2 Date: Mon, 1 Apr 2024 12:30:55 +0900 Subject: [PATCH] Fix typo in Python docstrings Fix typo in the get_json_graph function within the networkx_graph file located in the driver folder inside the graph directory. Change-Id: I674b4cd6b8e81aa2f6513fcbb530f2c05c568cce --- vitrage/graph/driver/networkx_graph.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vitrage/graph/driver/networkx_graph.py b/vitrage/graph/driver/networkx_graph.py index b062fc35f..f78780e95 100644 --- a/vitrage/graph/driver/networkx_graph.py +++ b/vitrage/graph/driver/networkx_graph.py @@ -325,9 +325,9 @@ class NXGraph(Graph): return nodes, edges_filtered2 def json_output_graph(self, **kwargs): - """supports both 1.10<=networkx<2.0 and networx>=2.0 by returning the + """supports both 1.10<=networkx<2.0 and networkx>=2.0 by returning the - same json output regardless networx version + same json output regardless networkx version :return: graph in json format """