Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,4 +1,5 @@
|
|
| 1 |
|
|
|
|
| 2 |
import streamlit as st
|
| 3 |
import pandas as pd
|
| 4 |
|
|
@@ -23,5 +24,5 @@ aoption = acontainer1.selectbox(
|
|
| 23 |
'Which station?',
|
| 24 |
adf['atitle']
|
| 25 |
)
|
| 26 |
-
if acontainer2.button("Submit"
|
| 27 |
-
asubmit(aparam={"aselected":aoption,"acontainer":acontainer3,"adataframe":adf,})
|
|
|
|
| 1 |
|
| 2 |
+
|
| 3 |
import streamlit as st
|
| 4 |
import pandas as pd
|
| 5 |
|
|
|
|
| 24 |
'Which station?',
|
| 25 |
adf['atitle']
|
| 26 |
)
|
| 27 |
+
if acontainer2.button("Submit") == True:
|
| 28 |
+
asubmit(aparam={"aselected":aoption,"acontainer":acontainer3,"adataframe":adf,})
|