Jon Solow commited on
Commit
1615cd8
1 Parent(s): 5f5f0b2

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[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 = {
@@ -35,7 +35,7 @@ PLAYOFF_WEEK_TO_NAME = {
35
  5: "Total",
36
  }
37
 
38
- CURRENT_PLAYOFF_WEEK = 3
39
 
40
 
41
  PLAYOFFS_TEAMS = {
@@ -71,7 +71,10 @@ PLAYOFFS_TEAMS = {
71
  teams.san_francisco_49ers.rosters_short_name,
72
  teams.detroit_lions.rosters_short_name,
73
  ],
74
- 4: [],
 
 
 
75
  }
76
 
77
  PLAYOFF_TEAM_DEF_PLAYER: list[tuple[teams.NFLTeam, str]] = [
 
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] = 4
28
 
29
 
30
  PLAYOFF_WEEK_TO_NAME = {
 
35
  5: "Total",
36
  }
37
 
38
+ CURRENT_PLAYOFF_WEEK = 4
39
 
40
 
41
  PLAYOFFS_TEAMS = {
 
71
  teams.san_francisco_49ers.rosters_short_name,
72
  teams.detroit_lions.rosters_short_name,
73
  ],
74
+ 4: [
75
+ teams.kansas_city_chiefs.rosters_short_name,
76
+ teams.san_francisco_49ers.rosters_short_name,
77
+ ],
78
  }
79
 
80
  PLAYOFF_TEAM_DEF_PLAYER: list[tuple[teams.NFLTeam, str]] = [