Skip to content

Commit

Permalink
Fix blocking in resolve operator
Browse files Browse the repository at this point in the history
  • Loading branch information
shreyashankar committed Sep 3, 2024
1 parent 7caed2c commit 0faee53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion motion/operations/resolve.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ def merge_clusters(item1, item2):
def meets_blocking_conditions(pair):
i, j = pair
return (
is_match(input_data[i], input_data[j]) if blocking_conditions else True
is_match(input_data[i], input_data[j]) if blocking_conditions else False
)

blocked_pairs = list(filter(meets_blocking_conditions, all_pairs))
Expand Down

0 comments on commit 0faee53

Please sign in to comment.