Skip to content

Commit

Permalink
updated the division standings. fixes #11 to add the division GB and …
Browse files Browse the repository at this point in the history
…removes runs scored and runs allowed to just have run differential
  • Loading branch information
cfrontin committed Sep 3, 2024
1 parent 5d701fb commit 1e92a4e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions crackerjack/fetch_standings.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ def run_standings():
"wins": wins_team,
"losses": losses_team,
"wpct": wpct_team,
"gb": gb_team,
"wcgb": wcgb_team,
"streak": streak_team,
"lg_id": lg_id,
Expand Down Expand Up @@ -129,6 +130,7 @@ def run_standings():
"wins": "W",
"losses": "L",
"wpct": "PCT",
"gb": "GB",
"wcgb": "WCGB",
"streak": "STK",
"rs_team": "RS",
Expand All @@ -145,10 +147,11 @@ def run_standings():
"W": 3,
"L": 3,
"PCT": 5,
"GB": 4,
"WCGB": 5,
"STK": 3,
"RS": 4,
"RA": 4,
# "RS": 4,
# "RA": 4,
"RD": 4,
# "DIV": 10,
# "RK DIV": 6,
Expand Down

0 comments on commit 1e92a4e

Please sign in to comment.