From 36babda70c10a0cbe434f08f584bc8f78b951a34 Mon Sep 17 00:00:00 2001 From: kcreekdev <158532564+kcreekdev@users.noreply.github.com> Date: Sat, 20 Apr 2024 11:43:50 -0400 Subject: [PATCH] Update default year for Tax-Cruncher app on compute studio --- cs-config/cs_config/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cs-config/cs_config/constants.py b/cs-config/cs_config/constants.py index 7c037d8..6d25cf6 100644 --- a/cs-config/cs_config/constants.py +++ b/cs-config/cs_config/constants.py @@ -66,7 +66,7 @@ class MetaParameters(paramtools.Parameters): "title": "Year", "description": "Year for parameters.", "type": "int", - "value": 2019, + "value": 2024, "validators": { "choice": {"choices": [yr for yr in range(2013, 2030 + 1)]} },