Jon Solow commited on
Commit
c156070
1 Parent(s): 0eb1d42

Add some playoff constants for mapping and labeling

Browse files
Files changed (1) hide show
  1. src/domain/playoffs.py +15 -0
src/domain/playoffs.py ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ PLAYOFF_WEEK_TO_SCHEDULE_WEEK = {
2
+ 1: 19,
3
+ 2: 20,
4
+ 3: 21,
5
+ 4: 22,
6
+ }
7
+
8
+ PLAYOFF_WEEK_TO_NAME = {
9
+ 1: "Wildcard",
10
+ 2: "Divisional",
11
+ 3: "Conference",
12
+ 4: "Super Bowl",
13
+ }
14
+
15
+ CURRENT_PLAYOFF_WEEK = 1