Skip to content

Commit

Permalink
Add back head of household filing status when repealing (#3488)
Browse files Browse the repository at this point in the history
* Fix EITC rate for Montana

* Add back HEAD_OF_HOUSEHOLD FilingStatus when repealing
Fixes #3487

* add back
  • Loading branch information
MaxGhenis authored Dec 18, 2023
1 parent ffe5285 commit 3f9465e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
4 changes: 4 additions & 0 deletions changelog_entry.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
- bump: patch
changes:
fixed:
- Import all FilingStatus values when repealing head of household.
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
from policyengine_us.model_api import *
from policyengine_us.variables.household.demographic.tax_unit.filing_status import (
FilingStatus,
)


def create_remove_head_of_household() -> Reform:
class FilingStatus(Enum):
SINGLE = "Single"
JOINT = "Joint"
SEPARATE = "Separate"
WIDOW = "Widow(er)"

class filing_status(Variable):
value_type = Enum
entity = TaxUnit
Expand Down

0 comments on commit 3f9465e

Please sign in to comment.