Jan Mühlnikel commited on
Commit
e79b235
·
1 Parent(s): 6b7c543

experiment

Browse files
Files changed (1) hide show
  1. modules/multimatch_result_table.py +1 -1
modules/multimatch_result_table.py CHANGED
@@ -8,7 +8,7 @@ def show_multi_table(p1_df, p2_df):
8
  p2_df = p2_df.reset_index(drop=True)
9
 
10
  actual_ind = 0
11
- for i in range(len(p1_df) - 1, -1, -2): # stepsize because project matchs in both ways and it should only display a match one time
12
  actual_ind += 1
13
  match_df = pd.DataFrame()
14
  row_from_p1 = p1_df.iloc[[i]]
 
8
  p2_df = p2_df.reset_index(drop=True)
9
 
10
  actual_ind = 0
11
+ for i in range(len(p1_df) - 1, -1, 2): # stepsize because project matchs in both ways and it should only display a match one time
12
  actual_ind += 1
13
  match_df = pd.DataFrame()
14
  row_from_p1 = p1_df.iloc[[i]]