Skip to content

Commit

Permalink
updated typo in finalise_matches.py
Browse files Browse the repository at this point in the history
  • Loading branch information
lmorabit committed Apr 24, 2020
1 parent e2e5e79 commit 4014acb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion finalise_matches.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ def check_duplicates( mytab ):
unique_tab = mytab[unique_idx]
dup_idx = np.where( dup_count > 1 )[0]
## get the rel col
rel_col = [ xx for xx in tmp_vals.colnames if 'Rel' in xx ]
#rel_col = [ xx for xx in tmp_vals.colnames if 'Rel' in xx ]
rel_col = [ xx for xx in mytab.colnames if 'Rel' in xx ]
rel_col = rel_col[0]
for xx in dup_idx:
dup_val = unique_vals[xx]
Expand Down

0 comments on commit 4014acb

Please sign in to comment.