Skip to content

Commit

Permalink
fix: name docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
aMahanna committed Oct 1, 2024
1 parent 7549f6a commit 877049c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions nx_arangodb/classes/digraph.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ class DiGraph(Graph, nx.DiGraph):
name : str (optional, default: None)
Name of the graph in the database. If the graph already exists,
the user can pass the name of the graph to connect to it. If
the graph does not exist, the user can create a new graph by
passing the name. NOTE: Must be used in conjunction with
the graph does not exist, a General Graph will be created by
passing the **name**. NOTE: Must be used in conjunction with
**incoming_graph_data** if the user wants to persist the graph
in ArangoDB.
Expand Down
4 changes: 2 additions & 2 deletions nx_arangodb/classes/graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ class Graph(nx.Graph):
name : str (optional, default: None)
Name of the graph in the database. If the graph already exists,
the user can pass the name of the graph to connect to it. If
the graph does not exist, the user can create a new graph by
passing the name. NOTE: Must be used in conjunction with
the graph does not exist, a General Graph will be created by
passing the **name**. NOTE: Must be used in conjunction with
**incoming_graph_data** if the user wants to persist the graph
in ArangoDB.
Expand Down
4 changes: 2 additions & 2 deletions nx_arangodb/classes/multidigraph.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ class MultiDiGraph(MultiGraph, DiGraph, nx.MultiDiGraph):
name : str (optional, default: None)
Name of the graph in the database. If the graph already exists,
the user can pass the name of the graph to connect to it. If
the graph does not exist, the user can create a new graph by
passing the name. NOTE: Must be used in conjunction with
the graph does not exist, a General Graph will be created by
passing the **name**. NOTE: Must be used in conjunction with
**incoming_graph_data** if the user wants to persist the graph
in ArangoDB.
Expand Down
4 changes: 2 additions & 2 deletions nx_arangodb/classes/multigraph.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ class MultiGraph(Graph, nx.MultiGraph):
name : str (optional, default: None)
Name of the graph in the database. If the graph already exists,
the user can pass the name of the graph to connect to it. If
the graph does not exist, the user can create a new graph by
passing the name. NOTE: Must be used in conjunction with
the graph does not exist, a General Graph will be created by
passing the **name**. NOTE: Must be used in conjunction with
**incoming_graph_data** if the user wants to persist the graph
in ArangoDB.
Expand Down

0 comments on commit 877049c

Please sign in to comment.