vives commited on
Commit
6526ed8
·
1 Parent(s): 13baf1d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -8
app.py CHANGED
@@ -29,12 +29,11 @@ if xl1 is not None and xl2 is not None:
29
  continue
30
  if kps1 != {}:
31
  for kp1 in kps1.keys():
32
- with st.container():
33
- col1, col2, col3 = st.columns()
34
- with col1:
35
- st.write(r1["KP"]
36
- with col2:
37
- st.write(f"kp: {kp1} , distance: {kps1[kp1]}")
38
- with col3:
39
- st.radio("Appropriate?", [True, False])
40
 
 
29
  continue
30
  if kps1 != {}:
31
  for kp1 in kps1.keys():
32
+ col1, col2, col3 = st.columns()
33
+ with col1:
34
+ st.write(r1["KP"]
35
+ with col2:
36
+ st.write(f"kp: {kp1} , distance: {kps1[kp1]}")
37
+ with col3:
38
+ st.radio("Appropriate?", [True, False])
 
39