Update app.py
Browse files
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 |
-
|
|
|
|
| 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 |
|