Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
aMahanna committed Sep 24, 2024
1 parent c14c1fb commit 766fb95
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nx_arangodb/classes/digraph.py
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ def add_nodes_from_override(self, nodes_for_adding, **attr):
# Reason:
# We can optimize the process of adding a node by creating avoiding
# the creation of a new dictionary and updating it with the attributes.
# Instead, we can create a new node_attr_dict object and set the attributes
# Instead, we create a new node_attr_dict object and set the attributes
# directly. This only makes 1 network call to the database instead of 2.

###########################
Expand Down
2 changes: 1 addition & 1 deletion nx_arangodb/classes/graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -746,7 +746,7 @@ def add_nodes_from_override(self, nodes_for_adding, **attr):
# Reason:
# We can optimize the process of adding a node by creating avoiding
# the creation of a new dictionary and updating it with the attributes.
# Instead, we can create a new node_attr_dict object and set the attributes
# Instead, we create a new node_attr_dict object and set the attributes
# directly. This only makes 1 network call to the database instead of 2.

###########################
Expand Down

0 comments on commit 766fb95

Please sign in to comment.