Skip to content

Commit

Permalink
fix: remove 1
Browse files Browse the repository at this point in the history
  • Loading branch information
aMahanna committed Aug 16, 2024
1 parent d2c0cc6 commit 07ce3a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_adapter.py
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ def assert_arangodb_data(
has_one_vcol = len(adb_v_cols) == 1
has_one_ecol = len(adb_e_cols) == 1

for i, (nx_id, nx_node) in enumerate(nx_g.nodes(data=True), 1):
for i, (nx_id, nx_node) in enumerate(nx_g.nodes(data=True)):
col = (
adb_v_cols[0]
if has_one_vcol
Expand Down

0 comments on commit 07ce3a7

Please sign in to comment.