Skip to content

Commit

Permalink
modify calcfunc?
Browse files Browse the repository at this point in the history
  • Loading branch information
jdebacker committed Jan 16, 2024
1 parent cee1552 commit e4c02ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions taxcalc/calcfunctions.py
Original file line number Diff line number Diff line change
Expand Up @@ -3310,15 +3310,15 @@ def IITAX(c59660, c11070, c10960, personal_refundable_credit, ctc_new, rptc,
"""
eitc = c59660
if CTC_refundable:
ctc_refund = c07220
ctc_refund = c07220
else:
ctc_refund = 0.
if ODC_refundable:
odc_refund = odc
else:
odc_refund = 0.
refund = (eitc + c11070 + c10960 + CDCC_refund + recovery_rebate_credit +
personal_refundable_credit + ctc_new + rptc + ctc_refund + odc_refund)
personal_refundable_credit + ctc_new + rptc + ctc_refund + odc_refund)
iitax = c09200 - refund
combined = iitax + payrolltax
return (eitc, refund, iitax, combined)
Expand Down

0 comments on commit e4c02ea

Please sign in to comment.