James McCool commited on
Commit
237985f
·
1 Parent(s): eabaa7d

Comment out date filtering in app.py to allow selection of today's date in the date options. This change enhances user flexibility in date selection for the duplication frame.

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -94,7 +94,7 @@ with tab1:
94
 
95
  with date_options:
96
  date_list = curr_info['Date'].sort_values(ascending=False).unique()
97
- date_list = date_list[date_list != pd.Timestamp.today().strftime('%Y-%m-%d')]
98
  date_select = st.selectbox("Select Date", date_list, key='date_select')
99
  date_select2 = (pd.to_datetime(date_select) + pd.Timedelta(days=1)).strftime('%Y-%m-%d')
100
 
 
94
 
95
  with date_options:
96
  date_list = curr_info['Date'].sort_values(ascending=False).unique()
97
+ # date_list = date_list[date_list != pd.Timestamp.today().strftime('%Y-%m-%d')]
98
  date_select = st.selectbox("Select Date", date_list, key='date_select')
99
  date_select2 = (pd.to_datetime(date_select) + pd.Timedelta(days=1)).strftime('%Y-%m-%d')
100