Skip to content

Commit

Permalink
fix: docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
aMahanna committed Sep 30, 2024
1 parent 35100f9 commit 7549f6a
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
8 changes: 4 additions & 4 deletions nx_arangodb/classes/digraph.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,10 +126,10 @@ class DiGraph(Graph, nx.DiGraph):
as expected.
overwrite_graph : bool (optional, default: False)
Whether to truncate the graph collections when the graph is loaded from
the database. If set to True, the graph collections will be truncated
before loading the graph data. NOTE: This parameter only applies if the
graph already exists in the database.
Whether to overwrite the graph in the database if it already exists. If
set to True, the graph collections will be dropped and recreated. Note that
this operation is irreversible and will result in the loss of all data in
the graph. NOTE: If set to True, Collection Indexes will also be lost.
args: positional arguments for nx.Graph
Additional arguments passed to nx.Graph.
Expand Down
8 changes: 4 additions & 4 deletions nx_arangodb/classes/graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,10 +160,10 @@ class Graph(nx.Graph):
as expected.
overwrite_graph : bool (optional, default: False)
Whether to truncate the graph collections when the graph is loaded from
the database. If set to True, the graph collections will be truncated
before loading the graph data. NOTE: This parameter only applies if the
graph already exists in the database.
Whether to overwrite the graph in the database if it already exists. If
set to True, the graph collections will be dropped and recreated. Note that
this operation is irreversible and will result in the loss of all data in
the graph. NOTE: If set to True, Collection Indexes will also be lost.
args: positional arguments for nx.Graph
Additional arguments passed to nx.Graph.
Expand Down
8 changes: 4 additions & 4 deletions nx_arangodb/classes/multidigraph.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,10 +136,10 @@ class MultiDiGraph(MultiGraph, DiGraph, nx.MultiDiGraph):
as expected.
overwrite_graph : bool (optional, default: False)
Whether to truncate the graph collections when the graph is loaded from
the database. If set to True, the graph collections will be truncated
before loading the graph data. NOTE: This parameter only applies if the
graph already exists in the database.
Whether to overwrite the graph in the database if it already exists. If
set to True, the graph collections will be dropped and recreated. Note that
this operation is irreversible and will result in the loss of all data in
the graph. NOTE: If set to True, Collection Indexes will also be lost.
args: positional arguments for nx.Graph
Additional arguments passed to nx.Graph.
Expand Down
8 changes: 4 additions & 4 deletions nx_arangodb/classes/multigraph.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,10 +137,10 @@ class MultiGraph(Graph, nx.MultiGraph):
as expected.
overwrite_graph : bool (optional, default: False)
Whether to truncate the graph collections when the graph is loaded from
the database. If set to True, the graph collections will be truncated
before loading the graph data. NOTE: This parameter only applies if the
graph already exists in the database.
Whether to overwrite the graph in the database if it already exists. If
set to True, the graph collections will be dropped and recreated. Note that
this operation is irreversible and will result in the loss of all data in
the graph. NOTE: If set to True, Collection Indexes will also be lost.
args: positional arguments for nx.Graph
Additional arguments passed to nx.Graph.
Expand Down

0 comments on commit 7549f6a

Please sign in to comment.