hyechanjun commited on
Commit
192f173
·
1 Parent(s): eb4bdc4

testing stwrite()

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -54,6 +54,6 @@ option = st.selectbox(
54
  ('interview-question-remake', 'interview-length-tagged', 'reverse-interview-question'))
55
 
56
  if st.button('Submit'):
57
- st.write(genQuestion(option, input))
58
-
59
- st.write("Things and stuff")
 
54
  ('interview-question-remake', 'interview-length-tagged', 'reverse-interview-question'))
55
 
56
  if st.button('Submit'):
57
+ output = genQuestion(option, input)
58
+ print(output)
59
+ st.write(output)