Skip to content

Commit

Permalink
Merge conflict fix to allow the rebase of "develop"
Browse files Browse the repository at this point in the history
  • Loading branch information
kokroo committed Dec 21, 2024
1 parent 1abedb8 commit c4e6177
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ncompare/sequence_operations.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,6 @@ def count_diffs(
# The number of differences is computed.
left = len(set_a - set_b)
right = len(set_b - set_a)
both = len(set_a & set_b)
shared = len(set_a & set_b)

return left, right, shared

0 comments on commit c4e6177

Please sign in to comment.