Skip to content

Commit

Permalink
Include 18 year olds in the NYWFTC as younger children
Browse files Browse the repository at this point in the history
Fixes #5055
  • Loading branch information
PavelMakarchuk committed Sep 11, 2024
1 parent 6525e72 commit b521791
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions changelog_entry.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
- bump: minor
changes:
added:
- Include 18 year olds in the NYWFTC as younger children.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def formula(person, period, parameters):
is_dependent = person("is_tax_unit_dependent", period)
age = person("age", period)
p = parameters(period).gov.irs.dependent.ineligible_age
age_eligible = age < p.non_student
age_eligible = age <= p.non_student
return is_dependent & age_eligible

class eitc_younger_children_count(Variable):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@
members: [person1, person2]
state_code: NY
output:
is_younger_child_dependent: [false, true]
ny_wftc_eligible_children: 0
ny_working_families_tax_credit: 0
ny_eitc: 0
Expand Down

0 comments on commit b521791

Please sign in to comment.