Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -728,7 +728,7 @@ elif app_mode == "Data Cleaning":
|
|
| 728 |
with st.expander("✨ Cleaned Data Preview", expanded=True):
|
| 729 |
st.dataframe(st.session_state.cleaned_data.head(), use_container_width=True)
|
| 730 |
|
| 731 |
-
|
| 732 |
with st.expander("💾 Export Cleaned Data", expanded=True):
|
| 733 |
st.write("You can download the cleaned data as a CSV file.")
|
| 734 |
csv = df.to_csv(index=False).encode('utf-8')
|
|
|
|
| 728 |
with st.expander("✨ Cleaned Data Preview", expanded=True):
|
| 729 |
st.dataframe(st.session_state.cleaned_data.head(), use_container_width=True)
|
| 730 |
|
| 731 |
+
enhance_section_title("Export Cleaned Data", "💾")
|
| 732 |
with st.expander("💾 Export Cleaned Data", expanded=True):
|
| 733 |
st.write("You can download the cleaned data as a CSV file.")
|
| 734 |
csv = df.to_csv(index=False).encode('utf-8')
|