Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into id
Browse files Browse the repository at this point in the history
  • Loading branch information
sydneybeutler committed Nov 28, 2023
2 parents d874aa0 + 6de2829 commit ccdd228
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 ccdd228

Please sign in to comment.