Skip to content

Commit

Permalink
Merge pull request #1 from PSLmodels/data-update
Browse files Browse the repository at this point in the history
Add one to last year to fix one-off error
  • Loading branch information
Peter-Metz committed Mar 20, 2020
2 parents 11ff232 + f288d8e commit 4106273
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cs-config/cs_config/constants.py
Expand Up @@ -12,7 +12,7 @@
"choice": {
"choices": [
yr for yr in range(TaxBrain.FIRST_BUDGET_YEAR,
TaxBrain.LAST_BUDGET_YEAR)
TaxBrain.LAST_BUDGET_YEAR + 1)
]
}
}
Expand Down Expand Up @@ -135,7 +135,7 @@ class MetaParameters(paramtools.Parameters):
"choice": {
"choices": [
yr for yr in range(TaxBrain.FIRST_BUDGET_YEAR,
TaxBrain.LAST_BUDGET_YEAR)
TaxBrain.LAST_BUDGET_YEAR + 1)
]
}
}
Expand Down

0 comments on commit 4106273

Please sign in to comment.