vives commited on
Commit
95fff9b
·
1 Parent(s): a9436ef

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -14,7 +14,9 @@ if xl1 is not None and xl2 is not None:
14
  xl1 = None
15
  xl2 = None
16
  else:
17
- for r1,r2 in zip(df1.iterrows(),df2.iterrows()):
 
 
18
  st.write(r1["Matched KPs"])
19
  st.write(r2["Matched KPs"])
20
  break
 
14
  xl1 = None
15
  xl2 = None
16
  else:
17
+ for t1,t2 in zip(df1.iterrows(),df2.iterrows()):
18
+ r1 = t1[1]
19
+ r2 = t2[1]
20
  st.write(r1["Matched KPs"])
21
  st.write(r2["Matched KPs"])
22
  break