Jon Solow commited on
Commit
a13bff8
·
1 Parent(s): a62c7e7

Set to 2024

Browse files
Files changed (2) hide show
  1. src/domain/constants.py +1 -1
  2. src/domain/playoffs.py +4 -21
src/domain/constants.py CHANGED
@@ -1 +1 @@
1
- SEASON = "2023"
 
1
+ SEASON = "2024"
src/domain/playoffs.py CHANGED
@@ -35,7 +35,7 @@ PLAYOFF_WEEK_TO_NAME = {
35
  5: "Total",
36
  }
37
 
38
- CURRENT_PLAYOFF_WEEK = 4
39
 
40
 
41
  PLAYOFFS_TEAMS = {
@@ -55,26 +55,9 @@ PLAYOFFS_TEAMS = {
55
  teams.pittsburgh_steelers.rosters_short_name,
56
  teams.green_bay_packers.rosters_short_name,
57
  ],
58
- 2: [
59
- teams.baltimore_ravens.rosters_short_name,
60
- teams.kansas_city_chiefs.rosters_short_name,
61
- teams.houston_texans.rosters_short_name,
62
- teams.san_francisco_49ers.rosters_short_name,
63
- teams.detroit_lions.rosters_short_name,
64
- teams.tampa_bay_buccaneers.rosters_short_name,
65
- teams.buffalo_bills.rosters_short_name,
66
- teams.green_bay_packers.rosters_short_name,
67
- ],
68
- 3: [
69
- teams.baltimore_ravens.rosters_short_name,
70
- teams.kansas_city_chiefs.rosters_short_name,
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]] = [
 
35
  5: "Total",
36
  }
37
 
38
+ CURRENT_PLAYOFF_WEEK = 1
39
 
40
 
41
  PLAYOFFS_TEAMS = {
 
55
  teams.pittsburgh_steelers.rosters_short_name,
56
  teams.green_bay_packers.rosters_short_name,
57
  ],
58
+ 2: [],
59
+ 3: [],
60
+ 4: [],
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
61
  }
62
 
63
  PLAYOFF_TEAM_DEF_PLAYER: list[tuple[teams.NFLTeam, str]] = [