Jon Solow commited on
Commit
8ca7e71
·
1 Parent(s): f578033

Set offseason mode and exclude more in season pages

Browse files
Files changed (1) hide show
  1. src/page_selector.py +8 -1
src/page_selector.py CHANGED
@@ -6,7 +6,7 @@ from streamlit.source_util import _on_pages_changed, get_pages
6
  SEASON_MODE = "season"
7
  OFFSEASON_MODE = "offseason"
8
 
9
- CURRENT_MODE = SEASON_MODE
10
 
11
  MAIN_PAGE_FILE = "Home.py"
12
 
@@ -22,6 +22,13 @@ MODE_PAGE_EXCLUSION_MAP = {
22
  "Practice_Reports",
23
  "League_Simulation",
24
  "Maximum_Roster_Strategy",
 
 
 
 
 
 
 
25
  ],
26
  }
27
 
 
6
  SEASON_MODE = "season"
7
  OFFSEASON_MODE = "offseason"
8
 
9
+ CURRENT_MODE = OFFSEASON_MODE
10
 
11
  MAIN_PAGE_FILE = "Home.py"
12
 
 
22
  "Practice_Reports",
23
  "League_Simulation",
24
  "Maximum_Roster_Strategy",
25
+ "Targets",
26
+ "Redzone_Opportunities",
27
+ "Snap_Counts",
28
+ "FTN_Charting",
29
+ "Team_Formations",
30
+ "Next_Gen_Stats",
31
+ "Load_Data",
32
  ],
33
  }
34