Update app.py
Browse files
app.py
CHANGED
|
@@ -496,8 +496,8 @@ def server(input, output, session):
|
|
| 496 |
year_input = int(input.year_input())
|
| 497 |
sport_id = int(input.level_input())
|
| 498 |
# player_input = int(input.pitcher_id())
|
| 499 |
-
start_date =
|
| 500 |
-
end_date =
|
| 501 |
game_type = [input.type_input()]
|
| 502 |
# Get game data
|
| 503 |
|
|
|
|
| 496 |
year_input = int(input.year_input())
|
| 497 |
sport_id = int(input.level_input())
|
| 498 |
# player_input = int(input.pitcher_id())
|
| 499 |
+
start_date = pl.date(input.date_id()[0])
|
| 500 |
+
end_date = pl.date(input.date_id()[1])
|
| 501 |
game_type = [input.type_input()]
|
| 502 |
# Get game data
|
| 503 |
|