Skip to content

GA-156 | bump phenolrs (again) #14

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions nx_arangodb/classes/dict.py
Original file line number Diff line number Diff line change
Expand Up @@ -533,8 +533,8 @@ def __fetch_all(self):
self.graph,
load_node_dict=True,
load_adj_dict=False,
load_adj_dict_as_directed=False, # not used
load_adj_dict_as_multigraph=False, # not used
is_directed=False, # not used
is_multigraph=False, # not used
load_coo=False,
)

Expand Down Expand Up @@ -1178,8 +1178,8 @@ def __fetch_all(self) -> None:
self.graph,
load_node_dict=False,
load_adj_dict=True,
load_adj_dict_as_directed=False, # TODO: Abstract based on Graph type
load_adj_dict_as_multigraph=False, # TODO: Abstract based on Graph type
is_directed=False, # TODO: Abstract based on Graph type
is_multigraph=False, # TODO: Abstract based on Graph type
load_coo=False,
)

Expand Down
8 changes: 4 additions & 4 deletions nx_arangodb/classes/function.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ def get_arangodb_graph(
adb_graph: Graph,
load_node_dict: bool,
load_adj_dict: bool,
load_adj_dict_as_directed: bool,
load_adj_dict_as_multigraph: bool,
is_directed: bool,
is_multigraph: bool,
load_coo: bool,
) -> Tuple[
dict[str, dict[str, Any]],
Expand Down Expand Up @@ -90,8 +90,8 @@ def get_arangodb_graph(
username=config.username,
password=config.password,
load_adj_dict=load_adj_dict,
load_adj_dict_as_directed=load_adj_dict_as_directed,
load_adj_dict_as_multigraph=load_adj_dict_as_multigraph,
is_directed=is_directed,
is_multigraph=is_multigraph,
load_coo=load_coo,
**kwargs,
)
Expand Down
8 changes: 4 additions & 4 deletions nx_arangodb/convert.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,8 @@ def from_networkx_arangodb(
adb_graph=G.adb_graph,
load_node_dict=False, # TODO: Should we load node dict?
load_adj_dict=True,
load_adj_dict_as_directed=G.is_directed(),
load_adj_dict_as_multigraph=G.is_multigraph(),
is_directed=G.is_directed(),
is_multigraph=G.is_multigraph(),
load_coo=False,
)
end_time = time.time()
Expand Down Expand Up @@ -243,8 +243,8 @@ def nxcg_from_networkx_arangodb(
adb_graph=G.adb_graph,
load_node_dict=False,
load_adj_dict=False,
load_adj_dict_as_directed=G.is_directed(), # not used
load_adj_dict_as_multigraph=G.is_multigraph(), # not used
is_directed=G.is_directed(), # not used
is_multigraph=G.is_multigraph(), # not used
load_coo=True,
)
)
Expand Down
Binary file not shown.