Skip to content

Commit

Permalink
Update base_page.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Llippeatt-git committed Aug 7, 2024
1 parent 2c68e13 commit d7696e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions press_dash_lib/pages/base_page.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,12 @@ def main(config_fp: str, user_utils: types.ModuleType = None):

# Identify year bounds for any range calculations
min_year = 2014
max_year = int(data['recategorized']["Calendar Year"].max(axis=0))
max_year = 2023
years_to_display = list(range(min_year,max_year+1, 1))

# for fiscal year range calcs
min_year_fisc = 2013
max_year_fisc = int(data['recategorized']["Fiscal Year"].max(axis=0))
max_year_fisc = 2022
years_to_display_fisc = list(range(min_year_fisc, max_year_fisc+1, 1))

# Data axes
Expand Down

0 comments on commit d7696e6

Please sign in to comment.