Skip to content

Commit

Permalink
fix: docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
aMahanna committed Jan 3, 2025
1 parent 8acc0a8 commit 81aba1a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions nx_arangodb/classes/dict/adj.py
Original file line number Diff line number Diff line change
Expand Up @@ -1458,6 +1458,12 @@ class AdjListOuterDict(UserDict[str, AdjListInnerDict]):
symmetrize_edges_if_directed : bool
Whether to add the reverse edge if the graph is directed.
read_parallelism : int
The number of parallel threads to use for reading data in _fetch_all.
read_batch_size : int
The number of documents to read in each batch in _fetch_all.
Example
-------
>>> g = nxadb.Graph(name="MyGraph")
Expand Down
6 changes: 6 additions & 0 deletions nx_arangodb/classes/dict/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,12 @@ class NodeDict(UserDict[str, NodeAttrDict]):
default_node_type : str
The default node type for the graph.
read_parallelism : int
The number of parallel threads to use for reading data in _fetch_all.
read_batch_size : int
The number of documents to read in each batch in _fetch_all.
Example
-------
>>> G = nxadb.Graph("MyGraph")
Expand Down

0 comments on commit 81aba1a

Please sign in to comment.