heymenn commited on
Commit
9bd34e5
·
verified ·
1 Parent(s): c62afb0

Update src/services/processor.py

Browse files
Files changed (1) hide show
  1. src/services/processor.py +1 -2
src/services/processor.py CHANGED
@@ -121,8 +121,7 @@ def find_best_list_combinations(list1: list[str], list2: list[str], matrix) -> l
121
  for i in range(len(list1)):
122
  valid_matches_for_l1_element = []
123
  for j in range(len(list2)):
124
- print((i,j))
125
- score = matrix[i, j]
126
 
127
  if MIN_SIMILARITY <= score <= MAX_SIMILARITY:
128
  valid_matches_for_l1_element.append((list2[j], score))
 
121
  for i in range(len(list1)):
122
  valid_matches_for_l1_element = []
123
  for j in range(len(list2)):
124
+ score = matrix[i][j]
 
125
 
126
  if MIN_SIMILARITY <= score <= MAX_SIMILARITY:
127
  valid_matches_for_l1_element.append((list2[j], score))