Skip to content

Commit 1e92a4e

Browse files
committed
updated the division standings. fixes #11 to add the division GB and removes runs scored and runs allowed to just have run differential
1 parent 5d701fb commit 1e92a4e

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

crackerjack/fetch_standings.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ def run_standings():
9696
"wins": wins_team,
9797
"losses": losses_team,
9898
"wpct": wpct_team,
99+
"gb": gb_team,
99100
"wcgb": wcgb_team,
100101
"streak": streak_team,
101102
"lg_id": lg_id,
@@ -129,6 +130,7 @@ def run_standings():
129130
"wins": "W",
130131
"losses": "L",
131132
"wpct": "PCT",
133+
"gb": "GB",
132134
"wcgb": "WCGB",
133135
"streak": "STK",
134136
"rs_team": "RS",
@@ -145,10 +147,11 @@ def run_standings():
145147
"W": 3,
146148
"L": 3,
147149
"PCT": 5,
150+
"GB": 4,
148151
"WCGB": 5,
149152
"STK": 3,
150-
"RS": 4,
151-
"RA": 4,
153+
# "RS": 4,
154+
# "RA": 4,
152155
"RD": 4,
153156
# "DIV": 10,
154157
# "RK DIV": 6,

0 commit comments

Comments
 (0)