Jon Solow commited on
Commit
bde90a4
·
1 Parent(s): d9c420f

Set the winning teams for divisional and remap the roster hack to conf round

Browse files
Files changed (1) hide show
  1. src/domain/playoffs.py +7 -2
src/domain/playoffs.py CHANGED
@@ -24,7 +24,7 @@ ROSTER_WEEK_TO_PLAYOFF_WEEK = {v: k for k, v in PLAYOFF_WEEK_TO_ROSTER_WEEK.item
24
  ROSTER_WEEK_TO_PLAYOFF_WEEK[18] = 1
25
 
26
  # TODO - remove this temp hack to get options loaded earlier in week
27
- ROSTER_WEEK_TO_PLAYOFF_WEEK[17] = 2
28
 
29
 
30
  PLAYOFF_WEEK_TO_NAME = {
@@ -64,7 +64,12 @@ PLAYOFFS_TEAMS = {
64
  teams.buffalo_bills.rosters_short_name,
65
  teams.green_bay_packers.rosters_short_name,
66
  ],
67
- 3: [],
 
 
 
 
 
68
  4: [],
69
  }
70
 
 
24
  ROSTER_WEEK_TO_PLAYOFF_WEEK[18] = 1
25
 
26
  # TODO - remove this temp hack to get options loaded earlier in week
27
+ ROSTER_WEEK_TO_PLAYOFF_WEEK[17] = 3
28
 
29
 
30
  PLAYOFF_WEEK_TO_NAME = {
 
64
  teams.buffalo_bills.rosters_short_name,
65
  teams.green_bay_packers.rosters_short_name,
66
  ],
67
+ 3: [
68
+ teams.baltimore_ravens.rosters_short_name,
69
+ teams.kansas_city_chiefs.rosters_short_name,
70
+ teams.san_francisco_49ers.rosters_short_name,
71
+ teams.detroit_lions.rosters_short_name,
72
+ ],
73
  4: [],
74
  }
75