Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions changelog_entry.yaml
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

need a git pull upstream master

Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
- bump: patch
changes:
fixed:
- Use employment_income instead of earned_income in the Maryland TANF computation.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
period: 2023
input:
state_code: MD
earned_income: 0
employment_income: 0
output:
md_tanf_gross_earned_income_deduction: 0

Expand All @@ -12,7 +12,7 @@
input:
state_code: MD
is_tanf_enrolled: false
earned_income: 100
employment_income: 100
output:
md_tanf_gross_earned_income_deduction: 20

Expand All @@ -22,7 +22,7 @@
state_code: MD
is_tanf_enrolled: true
self_employment_income: 0
earned_income: 100
employment_income: 100
output:
md_tanf_gross_earned_income_deduction: 40

Expand All @@ -32,6 +32,6 @@
state_code: MD
is_tanf_enrolled: true
self_employment_income: 100
earned_income: 100
employment_income: 100
output:
md_tanf_gross_earned_income_deduction: 50
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def formula(spm_unit, period, parameters):
# Get TANF enrollment status.
is_tanf_enrolled = spm_unit("is_tanf_enrolled", period)
# Get earned income for the SPM unit.
earned_income = add(spm_unit, period, ["earned_income"])
earned_income = add(spm_unit, period, ["employment_income"])
# Determine if the SPM unit has any self-employment income.
self_employment_income = add(
spm_unit, period, ["self_employment_income"]
Expand Down