Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -410,7 +410,7 @@ with tab3:
|
|
410 |
high_date3 = st.date_input('Max Date:', value=None, format="YYYY-MM-DD", key='high_date3')
|
411 |
if high_date3 is not None:
|
412 |
high_date3 = pd.to_datetime(high_date3).date()
|
413 |
-
elif
|
414 |
low_date3 = gamelog_table['Date'].min()
|
415 |
high_date3 = gamelog_table['Date'].max()
|
416 |
|
|
|
410 |
high_date3 = st.date_input('Max Date:', value=None, format="YYYY-MM-DD", key='high_date3')
|
411 |
if high_date3 is not None:
|
412 |
high_date3 = pd.to_datetime(high_date3).date()
|
413 |
+
elif date_var3 == 'All':
|
414 |
low_date3 = gamelog_table['Date'].min()
|
415 |
high_date3 = gamelog_table['Date'].max()
|
416 |
|