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
This commit is contained in:
xfrnk2 2024-04-01 12:30:55 +09:00
parent 8d7da8b33f
commit 3f3bc5765b
1 changed files with 2 additions and 2 deletions

View File

@ -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
"""