Jon Solow commited on
Commit
3896146
·
1 Parent(s): e0aa310

Update to 2024 playoff teams that have made it in

Browse files
Files changed (1) hide show
  1. src/domain/playoffs.py +16 -12
src/domain/playoffs.py CHANGED
@@ -21,10 +21,10 @@ PLAYOFF_WEEK_TO_ROSTER_WEEK = {
21
  ROSTER_WEEK_TO_PLAYOFF_WEEK = {v: k for k, v in PLAYOFF_WEEK_TO_ROSTER_WEEK.items()}
22
 
23
  # Still map 18 to week 1 in one direction for players on a bye in week 19
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 = {
@@ -40,20 +40,24 @@ CURRENT_PLAYOFF_WEEK = 1
40
 
41
  PLAYOFFS_TEAMS = {
42
  1: [
43
- teams.baltimore_ravens.rosters_short_name,
44
- teams.miami_dolphins.rosters_short_name,
45
  teams.kansas_city_chiefs.rosters_short_name,
46
- teams.houston_texans.rosters_short_name,
47
- teams.cleveland_browns.rosters_short_name,
48
- teams.san_francisco_49ers.rosters_short_name,
49
- teams.dallas_cowboys.rosters_short_name,
50
  teams.detroit_lions.rosters_short_name,
51
- teams.philadelphia_eagles.rosters_short_name,
52
- teams.los_angeles_rams.rosters_short_name,
53
- teams.tampa_bay_buccaneers.rosters_short_name,
54
  teams.buffalo_bills.rosters_short_name,
55
- teams.pittsburgh_steelers.rosters_short_name,
56
  teams.green_bay_packers.rosters_short_name,
 
 
 
 
 
 
 
 
 
 
 
 
57
  ],
58
  2: [],
59
  3: [],
 
21
  ROSTER_WEEK_TO_PLAYOFF_WEEK = {v: k for k, v in PLAYOFF_WEEK_TO_ROSTER_WEEK.items()}
22
 
23
  # Still map 18 to week 1 in one direction for players on a bye in week 19
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[17] = 4
28
 
29
 
30
  PLAYOFF_WEEK_TO_NAME = {
 
40
 
41
  PLAYOFFS_TEAMS = {
42
  1: [
 
 
43
  teams.kansas_city_chiefs.rosters_short_name,
 
 
 
 
44
  teams.detroit_lions.rosters_short_name,
45
+ teams.minnesota_vikings.rosters_short_name,
 
 
46
  teams.buffalo_bills.rosters_short_name,
47
+ teams.philadelphia_eagles.rosters_short_name,
48
  teams.green_bay_packers.rosters_short_name,
49
+ teams.baltimore_ravens.rosters_short_name,
50
+ teams.pittsburgh_steelers.rosters_short_name,
51
+ teams.houston_texans.rosters_short_name,
52
+
53
+ # likely
54
+ # teams.los_angeles_chargers.rosters_short_name,
55
+ # teams.washington_football_team.rosters_short_name,
56
+
57
+ # maybes
58
+ # teams.tampa_bay_buccaneers.rosters_short_name, # or falcons
59
+ # teams.los_angeles_rams.rosters_short_name, # or seahawks
60
+ # teams.denver_broncos.rosters_short_name, # or dolphins, colts
61
  ],
62
  2: [],
63
  3: [],