eagle0504 commited on
Commit
d6722d1
·
verified ·
1 Parent(s): f382b03

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -76,7 +76,8 @@ elif option == "Entry Strategy":
76
  "Select a range of values to infer margin of error", 0.0, 100.0, (25.0, 75.0)
77
  )
78
  with st.sidebar:
79
- submit_button = st.form_submit_button(label="Submit!")
 
80
  else:
81
  st.sidebar.write("Please pick an option from above.")
82
 
 
76
  "Select a range of values to infer margin of error", 0.0, 100.0, (25.0, 75.0)
77
  )
78
  with st.sidebar:
79
+ with st.form("Submit"):
80
+ submit_button = st.form_submit_button(label="Submit!")
81
  else:
82
  st.sidebar.write("Please pick an option from above.")
83