Jon Solow
commited on
Commit
·
78eabe2
1
Parent(s):
049ac4d
Remove eliminated teams
Browse files- src/domain/playoffs.py +15 -15
src/domain/playoffs.py
CHANGED
@@ -41,36 +41,36 @@ CURRENT_PLAYOFF_WEEK = 1
|
|
41 |
PLAYOFFS_TEAMS = {
|
42 |
1: [
|
43 |
teams.buffalo_bills.rosters_short_name,
|
44 |
-
teams.miami_dolphins.rosters_short_name,
|
45 |
-
teams.new_england_patriots.rosters_short_name,
|
46 |
-
teams.new_york_jets.rosters_short_name,
|
47 |
teams.baltimore_ravens.rosters_short_name,
|
48 |
teams.cincinnati_bengals.rosters_short_name,
|
49 |
-
teams.cleveland_browns.rosters_short_name,
|
50 |
teams.pittsburgh_steelers.rosters_short_name,
|
51 |
teams.houston_texans.rosters_short_name,
|
52 |
-
teams.indianapolis_colts.rosters_short_name,
|
53 |
-
teams.jacksonville_jaguars.rosters_short_name,
|
54 |
-
teams.tennessee_titans.rosters_short_name,
|
55 |
teams.denver_broncos.rosters_short_name,
|
56 |
teams.kansas_city_chiefs.rosters_short_name,
|
57 |
-
teams.las_vegas_raiders.rosters_short_name,
|
58 |
teams.los_angeles_chargers.rosters_short_name,
|
59 |
-
teams.dallas_cowboys.rosters_short_name,
|
60 |
-
teams.new_york_giants.rosters_short_name,
|
61 |
teams.philadelphia_eagles.rosters_short_name,
|
62 |
teams.washington_football_team.rosters_short_name,
|
63 |
-
teams.chicago_bears.rosters_short_name,
|
64 |
teams.detroit_lions.rosters_short_name,
|
65 |
teams.green_bay_packers.rosters_short_name,
|
66 |
teams.minnesota_vikings.rosters_short_name,
|
67 |
teams.atlanta_falcons.rosters_short_name,
|
68 |
-
teams.carolina_panthers.rosters_short_name,
|
69 |
-
teams.new_orleans_saints.rosters_short_name,
|
70 |
teams.tampa_bay_buccaneers.rosters_short_name,
|
71 |
-
teams.arizona_cardinals.rosters_short_name,
|
72 |
teams.los_angeles_rams.rosters_short_name,
|
73 |
-
teams.san_francisco_49ers.rosters_short_name,
|
74 |
teams.seattle_seahawks.rosters_short_name,
|
75 |
],
|
76 |
2: [],
|
|
|
41 |
PLAYOFFS_TEAMS = {
|
42 |
1: [
|
43 |
teams.buffalo_bills.rosters_short_name,
|
44 |
+
# teams.miami_dolphins.rosters_short_name,
|
45 |
+
# teams.new_england_patriots.rosters_short_name,
|
46 |
+
# teams.new_york_jets.rosters_short_name,
|
47 |
teams.baltimore_ravens.rosters_short_name,
|
48 |
teams.cincinnati_bengals.rosters_short_name,
|
49 |
+
# teams.cleveland_browns.rosters_short_name,
|
50 |
teams.pittsburgh_steelers.rosters_short_name,
|
51 |
teams.houston_texans.rosters_short_name,
|
52 |
+
# teams.indianapolis_colts.rosters_short_name,
|
53 |
+
# teams.jacksonville_jaguars.rosters_short_name,
|
54 |
+
# teams.tennessee_titans.rosters_short_name,
|
55 |
teams.denver_broncos.rosters_short_name,
|
56 |
teams.kansas_city_chiefs.rosters_short_name,
|
57 |
+
# teams.las_vegas_raiders.rosters_short_name,
|
58 |
teams.los_angeles_chargers.rosters_short_name,
|
59 |
+
# teams.dallas_cowboys.rosters_short_name,
|
60 |
+
# teams.new_york_giants.rosters_short_name,
|
61 |
teams.philadelphia_eagles.rosters_short_name,
|
62 |
teams.washington_football_team.rosters_short_name,
|
63 |
+
# teams.chicago_bears.rosters_short_name,
|
64 |
teams.detroit_lions.rosters_short_name,
|
65 |
teams.green_bay_packers.rosters_short_name,
|
66 |
teams.minnesota_vikings.rosters_short_name,
|
67 |
teams.atlanta_falcons.rosters_short_name,
|
68 |
+
# teams.carolina_panthers.rosters_short_name,
|
69 |
+
# teams.new_orleans_saints.rosters_short_name,
|
70 |
teams.tampa_bay_buccaneers.rosters_short_name,
|
71 |
+
# teams.arizona_cardinals.rosters_short_name,
|
72 |
teams.los_angeles_rams.rosters_short_name,
|
73 |
+
# teams.san_francisco_49ers.rosters_short_name,
|
74 |
teams.seattle_seahawks.rosters_short_name,
|
75 |
],
|
76 |
2: [],
|