rubenwol commited on
Commit
a9448d0
·
1 Parent(s): ffb5289

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -69,13 +69,13 @@ if state.files:
69
  st.write(f"Output: {selected_file[state.indexes[0]]}")
70
  # c = st.columns(len(OPTIONS))
71
  state.a = st.radio('a', OPTIONS, key=f'{0}')
72
- print('-'*50)
73
  st.write(f"Output: {selected_file[state.indexes[1]]}")
74
  state.b = st.radio('b', OPTIONS, key=f'{1}')
75
- print('-'*50)
76
  st.write(f"Output: {selected_file[state.indexes[2]]}")
77
  state.c = st.radio('c', OPTIONS, key=f'{2}')
78
- print('-'*50)
79
 
80
 
81
  st.button('Submit', on_click=submit, args=(copy.deepcopy(state.indexes)))
 
69
  st.write(f"Output: {selected_file[state.indexes[0]]}")
70
  # c = st.columns(len(OPTIONS))
71
  state.a = st.radio('a', OPTIONS, key=f'{0}')
72
+ st.write('-'*50)
73
  st.write(f"Output: {selected_file[state.indexes[1]]}")
74
  state.b = st.radio('b', OPTIONS, key=f'{1}')
75
+ st.write('-'*50)
76
  st.write(f"Output: {selected_file[state.indexes[2]]}")
77
  state.c = st.radio('c', OPTIONS, key=f'{2}')
78
+ st.write('-'*50)
79
 
80
 
81
  st.button('Submit', on_click=submit, args=(copy.deepcopy(state.indexes)))