Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -165,7 +165,7 @@ with tab1:
|
|
165 |
st.dataframe(st.session_state.data_export_freq.style.format(percentages_format, precision=2), height=500, use_container_width=True)
|
166 |
|
167 |
if st.button("Prepare data export", key='data_export'):
|
168 |
-
st.session_state.data_export = working_seed.copy()
|
169 |
if 'data_export' in st.session_state:
|
170 |
st.download_button(
|
171 |
label="Export optimals set",
|
|
|
165 |
st.dataframe(st.session_state.data_export_freq.style.format(percentages_format, precision=2), height=500, use_container_width=True)
|
166 |
|
167 |
if st.button("Prepare data export", key='data_export'):
|
168 |
+
st.session_state.data_export = st.session_state.working_seed.copy()
|
169 |
if 'data_export' in st.session_state:
|
170 |
st.download_button(
|
171 |
label="Export optimals set",
|