diff --git a/_nx_arangodb/__init__.py b/_nx_arangodb/__init__.py index 0bf0e9b9..267e29ab 100644 --- a/_nx_arangodb/__init__.py +++ b/_nx_arangodb/__init__.py @@ -31,6 +31,7 @@ "functions": { # BEGIN: functions "betweenness_centrality", + "is_partition", "louvain_communities", "louvain_partitions", "modularity", @@ -45,6 +46,9 @@ }, "additional_parameters": { # BEGIN: additional_parameters + "is_partition": { + "dtype : dtype or None, optional": "The data type (np.float32, np.float64, or None) to use for the edge weights in the algorithm. If None, then dtype is determined by the edge values.", + }, "louvain_communities": { "dtype : dtype or None, optional": "The data type (np.float32, np.float64, or None) to use for the edge weights in the algorithm. If None, then dtype is determined by the edge values.", },