Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
PavelMakarchuk committed Dec 4, 2024
1 parent 53d8ed2 commit 369bba4
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,9 @@ class wi_exemption(Variable):
def formula(tax_unit, period, parameters):
# compute base exemption amount
p = parameters(period).gov.states.wi.tax.income
base_amount = tax_unit("head_spouse_count", period) * p.exemption.base
base_amount = (
tax_unit("head_spouse_count", period) * p.exemption.base
)
# compute extra exemption amount
elderly_head = (
tax_unit("age_head", period) >= p.exemption.old_age
Expand All @@ -401,7 +403,6 @@ def formula(tax_unit, period, parameters):
# return total exemption amount
return base_amount + extra_amount


class reform(Reform):
def apply(self):
self.neutralize_variable("al_dependent_exemption")
Expand Down

0 comments on commit 369bba4

Please sign in to comment.