Skip to content

Commit

Permalink
Merge pull request #70 from austinperryfrancis/va_eitc_fix
Browse files Browse the repository at this point in the history
Merging
  • Loading branch information
rickecon authored Nov 22, 2023
2 parents bb025d2 + c4beb81 commit 6de2829
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ def formula(tax_unit, period, parameters):
line_14 = fed_eitc
line_15 = line_14 * eitc_rate
line_16 = where(line_15 > line_13, line_15, line_13)
line_17 = where(net_tax > line_16, line_16, 0)
line_17 = where(net_tax > line_16, line_16, net_tax)

return where(total_agi < threshold, line_17, 0)

0 comments on commit 6de2829

Please sign in to comment.