Skip to content

Commit

Permalink
fix: remove time from download file name
Browse files Browse the repository at this point in the history
  • Loading branch information
hanhou committed Aug 15, 2024
1 parent bcab845 commit c8cc256
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/util/streamlit.py
Original file line number Diff line number Diff line change
Expand Up @@ -697,7 +697,7 @@ def _add_download_filtered_session():
if 'filter' in key}
query = json.dumps(filters, indent=4)

current_time = datetime.now().strftime("%Y%m%d_%H%M%S")
current_time = datetime.now().strftime("%Y%m%d")

# Create download buttons
st.download_button(
Expand Down

0 comments on commit c8cc256

Please sign in to comment.