Jon Solow commited on
Commit
fc4d230
·
1 Parent(s): c555156

Update to week 3

Browse files
Files changed (1) hide show
  1. src/domain/playoffs.py +8 -3
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[17] = 1
25
 
26
  # TODO - remove this temp hack to get options loaded earlier in week
27
- ROSTER_WEEK_TO_PLAYOFF_WEEK[18] = 2
28
 
29
 
30
  PLAYOFF_WEEK_TO_NAME = {
@@ -35,7 +35,7 @@ PLAYOFF_WEEK_TO_NAME = {
35
  5: "Total",
36
  }
37
 
38
- CURRENT_PLAYOFF_WEEK = 2
39
 
40
 
41
  PLAYOFFS_TEAMS = {
@@ -83,7 +83,12 @@ PLAYOFFS_TEAMS = {
83
  teams.detroit_lions.rosters_short_name,
84
  teams.los_angeles_rams.rosters_short_name,
85
  ],
86
- 3: [],
 
 
 
 
 
87
  4: [],
88
  }
89
 
 
24
  ROSTER_WEEK_TO_PLAYOFF_WEEK[17] = 1
25
 
26
  # TODO - remove this temp hack to get options loaded earlier in week
27
+ ROSTER_WEEK_TO_PLAYOFF_WEEK[18] = 3
28
 
29
 
30
  PLAYOFF_WEEK_TO_NAME = {
 
35
  5: "Total",
36
  }
37
 
38
+ CURRENT_PLAYOFF_WEEK = 3
39
 
40
 
41
  PLAYOFFS_TEAMS = {
 
83
  teams.detroit_lions.rosters_short_name,
84
  teams.los_angeles_rams.rosters_short_name,
85
  ],
86
+ 3: [
87
+ teams.buffalo_bills.rosters_short_name,
88
+ teams.kansas_city_chiefs.rosters_short_name,
89
+ teams.philadelphia_eagles.rosters_short_name,
90
+ teams.washington_football_team.rosters_short_name,
91
+ ],
92
  4: [],
93
  }
94