Update app.py
Browse files
app.py
CHANGED
|
@@ -359,7 +359,7 @@ def server(input, output, session):
|
|
| 359 |
# Get the list of pitchers for the selected level and season
|
| 360 |
df_pitcher_info = scrape.get_players(sport_id=int(input.level_input()), season=int(input.year_input()), game_type = [input.type_input()]).filter(
|
| 361 |
(pl.col("position").is_in(['P','TWP']))|
|
| 362 |
-
(pl.col("player_id").is_in([686846]))
|
| 363 |
|
| 364 |
).sort("name")
|
| 365 |
|
|
|
|
| 359 |
# Get the list of pitchers for the selected level and season
|
| 360 |
df_pitcher_info = scrape.get_players(sport_id=int(input.level_input()), season=int(input.year_input()), game_type = [input.type_input()]).filter(
|
| 361 |
(pl.col("position").is_in(['P','TWP']))|
|
| 362 |
+
(pl.col("player_id").is_in([686846,806823]))
|
| 363 |
|
| 364 |
).sort("name")
|
| 365 |
|