Joshnicholas commited on
Commit
1281ca5
·
verified ·
1 Parent(s): c5eba30

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -64,7 +64,8 @@ def matcher(original=[], lookup=[], outname='Original', ngram_length=3, cutoff=0
64
  )
65
 
66
  # bind columns
67
- matches = pd.concat([df_orig_name, df_lookups, df_confidence], axis=1)
 
68
 
69
  # reorder columns | can be skipped
70
  lookup_cols = list(matches.columns.values)
 
64
  )
65
 
66
  # bind columns
67
+ # matches = pd.concat([df_orig_name, df_lookups, df_confidence], axis=1)
68
+ matches = pd.concat([df_orig_name, df_lookups], axis=1)
69
 
70
  # reorder columns | can be skipped
71
  lookup_cols = list(matches.columns.values)