Update app.py
Browse files
app.py
CHANGED
|
@@ -188,7 +188,7 @@ main_ui = ui.page_sidebar(
|
|
| 188 |
# Row for selecting season and level
|
| 189 |
ui.row(ui.markdown("### Select Pitcher 1")),
|
| 190 |
ui.row(
|
| 191 |
-
ui.column(4, ui.input_select('year_input_1', 'Season', year_list, selected=
|
| 192 |
ui.column(4, ui.input_select('level_input_1', 'Level', level_dict)),
|
| 193 |
ui.column(4, ui.input_select('type_input_1', 'Type', type_dict,selected='R'))
|
| 194 |
),
|
|
@@ -217,7 +217,7 @@ main_ui = ui.page_sidebar(
|
|
| 217 |
# Row for selecting season and level
|
| 218 |
ui.row(ui.markdown("### Select Pitcher 2")),
|
| 219 |
ui.row(
|
| 220 |
-
ui.column(4, ui.input_select('year_input_2', 'Season', year_list, selected=
|
| 221 |
ui.column(4, ui.input_select('level_input_2', 'Level', level_dict)),
|
| 222 |
ui.column(4, ui.input_select('type_input_2', 'Type', type_dict,selected='R'))
|
| 223 |
),
|
|
|
|
| 188 |
# Row for selecting season and level
|
| 189 |
ui.row(ui.markdown("### Select Pitcher 1")),
|
| 190 |
ui.row(
|
| 191 |
+
ui.column(4, ui.input_select('year_input_1', 'Season', year_list, selected=2025)),
|
| 192 |
ui.column(4, ui.input_select('level_input_1', 'Level', level_dict)),
|
| 193 |
ui.column(4, ui.input_select('type_input_1', 'Type', type_dict,selected='R'))
|
| 194 |
),
|
|
|
|
| 217 |
# Row for selecting season and level
|
| 218 |
ui.row(ui.markdown("### Select Pitcher 2")),
|
| 219 |
ui.row(
|
| 220 |
+
ui.column(4, ui.input_select('year_input_2', 'Season', year_list, selected=2025)),
|
| 221 |
ui.column(4, ui.input_select('level_input_2', 'Level', level_dict)),
|
| 222 |
ui.column(4, ui.input_select('type_input_2', 'Type', type_dict,selected='R'))
|
| 223 |
),
|