Jon Solow commited on
Commit
00a0bd3
·
1 Parent(s): 6b5ee7e

Set to week 4

Browse files
Files changed (1) hide show
  1. src/domain/playoffs.py +6 -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] = 3
28
 
29
 
30
  PLAYOFF_WEEK_TO_NAME = {
@@ -35,7 +35,7 @@ PLAYOFF_WEEK_TO_NAME = {
35
  5: "Total",
36
  }
37
 
38
- CURRENT_PLAYOFF_WEEK = 3
39
 
40
 
41
  PLAYOFFS_TEAMS = {
@@ -89,7 +89,10 @@ PLAYOFFS_TEAMS = {
89
  teams.philadelphia_eagles.rosters_short_name,
90
  teams.washington_football_team.rosters_short_name,
91
  ],
92
- 4: [],
 
 
 
93
  }
94
 
95
  PLAYOFF_TEAM_DEF_PLAYER: list[tuple[teams.NFLTeam, str]] = [
 
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] = 4
28
 
29
 
30
  PLAYOFF_WEEK_TO_NAME = {
 
35
  5: "Total",
36
  }
37
 
38
+ CURRENT_PLAYOFF_WEEK = 4
39
 
40
 
41
  PLAYOFFS_TEAMS = {
 
89
  teams.philadelphia_eagles.rosters_short_name,
90
  teams.washington_football_team.rosters_short_name,
91
  ],
92
+ 4: [
93
+ teams.kansas_city_chiefs.rosters_short_name,
94
+ teams.philadelphia_eagles.rosters_short_name,
95
+ ],
96
  }
97
 
98
  PLAYOFF_TEAM_DEF_PLAYER: list[tuple[teams.NFLTeam, str]] = [