Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -101,7 +101,7 @@ with tab2:
|
|
101 |
st.info(t_stamp)
|
102 |
if st.button("Load/Reset Data", key='reset1'):
|
103 |
st.cache_data.clear()
|
104 |
-
dk_raw, fd_raw, roo_raw = load_overall_stats()
|
105 |
t_stamp = f"Last Update: " + str(timestamp) + f" CST"
|
106 |
for key in st.session_state.keys():
|
107 |
del st.session_state[key]
|
@@ -151,7 +151,7 @@ with tab3:
|
|
151 |
st.info(t_stamp)
|
152 |
if st.button("Load/Reset Data", key='reset2'):
|
153 |
st.cache_data.clear()
|
154 |
-
dk_raw, fd_raw, roo_raw = load_overall_stats()
|
155 |
t_stamp = f"Last Update: " + str(timestamp) + f" CST"
|
156 |
for key in st.session_state.keys():
|
157 |
del st.session_state[key]
|
|
|
101 |
st.info(t_stamp)
|
102 |
if st.button("Load/Reset Data", key='reset1'):
|
103 |
st.cache_data.clear()
|
104 |
+
dk_raw, fd_raw, roo_raw, timestamp = load_overall_stats()
|
105 |
t_stamp = f"Last Update: " + str(timestamp) + f" CST"
|
106 |
for key in st.session_state.keys():
|
107 |
del st.session_state[key]
|
|
|
151 |
st.info(t_stamp)
|
152 |
if st.button("Load/Reset Data", key='reset2'):
|
153 |
st.cache_data.clear()
|
154 |
+
dk_raw, fd_raw, roo_raw, timestamp = load_overall_stats()
|
155 |
t_stamp = f"Last Update: " + str(timestamp) + f" CST"
|
156 |
for key in st.session_state.keys():
|
157 |
del st.session_state[key]
|