We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d701fb commit 1e92a4eCopy full SHA for 1e92a4e
1 file changed
crackerjack/fetch_standings.py
@@ -96,6 +96,7 @@ def run_standings():
96
"wins": wins_team,
97
"losses": losses_team,
98
"wpct": wpct_team,
99
+ "gb": gb_team,
100
"wcgb": wcgb_team,
101
"streak": streak_team,
102
"lg_id": lg_id,
@@ -129,6 +130,7 @@ def run_standings():
129
130
"wins": "W",
131
"losses": "L",
132
"wpct": "PCT",
133
+ "gb": "GB",
134
"wcgb": "WCGB",
135
"streak": "STK",
136
"rs_team": "RS",
@@ -145,10 +147,11 @@ def run_standings():
145
147
"W": 3,
146
148
"L": 3,
149
"PCT": 5,
150
+ "GB": 4,
151
"WCGB": 5,
152
"STK": 3,
- "RS": 4,
- "RA": 4,
153
+ # "RS": 4,
154
+ # "RA": 4,
155
"RD": 4,
156
# "DIV": 10,
157
# "RK DIV": 6,
0 commit comments