heymenn commited on
Commit
c62afb0
·
verified ·
1 Parent(s): 6117e08

Update src/services/processor.py

Browse files
Files changed (1) hide show
  1. src/services/processor.py +1 -0
src/services/processor.py CHANGED
@@ -121,6 +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
  score = matrix[i, j]
125
 
126
  if MIN_SIMILARITY <= score <= MAX_SIMILARITY:
 
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: