James McCool
commited on
Commit
·
038b8a8
1
Parent(s):
2c1397f
Update app.py to display contest date mapping for improved user context
Browse files- Replaced the placeholder comment with a display of the contest_date_map in the app.py file, enhancing user awareness of available contest dates.
- This change supports ongoing efforts to improve user experience and data accessibility within the application.
app.py
CHANGED
@@ -66,7 +66,7 @@ with tab1:
|
|
66 |
name_parse = curr_info[curr_info['Date'] == date_select]['Contest Name']
|
67 |
with col4:
|
68 |
type_var = st.selectbox("Select Game Type", ['Classic', 'Showdown'], key='type_var')
|
69 |
-
|
70 |
col1, col2 = st.columns(2)
|
71 |
|
72 |
with col1:
|
|
|
66 |
name_parse = curr_info[curr_info['Date'] == date_select]['Contest Name']
|
67 |
with col4:
|
68 |
type_var = st.selectbox("Select Game Type", ['Classic', 'Showdown'], key='type_var')
|
69 |
+
st.write(contest_date_map)
|
70 |
col1, col2 = st.columns(2)
|
71 |
|
72 |
with col1:
|