Skip to content

Commit 637c04a

Browse files
Change output format from csv to json
1 parent 063a646 commit 637c04a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

streamlit_app.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,10 @@ def convert_df(df):
8181
csv = convert_df(df_sel_row) #
8282

8383
st.download_button(
84-
label="Download to CSV",
84+
label="Download your selection to CSV",
8585
data=csv,
8686
file_name="results.csv",
8787
mime="text/csv",
8888
)
8989

90-
st.write(df_sel_row)
90+
st.write(sel_row)

0 commit comments

Comments
 (0)