diff --git a/changelog_entry.yaml b/changelog_entry.yaml index e69de29bb..4c5b3a981 100644 --- a/changelog_entry.yaml +++ b/changelog_entry.yaml @@ -0,0 +1,4 @@ +- bump: patch + changes: + fixed: + - Abolish Council Tax has no budgetary impact. diff --git a/policyengine_uk/variables/gov/gov_tax.py b/policyengine_uk/variables/gov/gov_tax.py index 20908642f..acfd2cd7e 100644 --- a/policyengine_uk/variables/gov/gov_tax.py +++ b/policyengine_uk/variables/gov/gov_tax.py @@ -34,3 +34,12 @@ class gov_tax(Variable): "high_income_incident_tax_change", "ni_employer", ] + + def formula(household, period, parameters): + variables = list(gov_tax.adds) + if parameters(period).gov.contrib.abolish_council_tax: + variables = [ + variable for variable in variables if variable != "council_tax" + ] + + return add(household, period, variables)