Skip to content

Commit

Permalink
Ohio Joint Filing Credit
Browse files Browse the repository at this point in the history
  • Loading branch information
mylittlebecca committed Nov 29, 2023
1 parent b5c3517 commit 17be7bd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
period: 2021
input:
state_code: OH
oh_income_tax_before_credits: 800
oh_income_tax_before_non_refundable_credits: 800
oh_non_refundable_credits: 900
output:
oh_income_tax_before_refundable_credits: 0
Expand All @@ -11,7 +11,7 @@
period: 2021
input:
state_code: OH
oh_income_tax_before_credits: 800
oh_income_tax_before_non_refundable_credits: 800
oh_non_refundable_credits: 600
output:
oh_income_tax_before_refundable_credits: 200
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ class oh_income_tax_before_refundable_credits(Variable):
defined_for = StateCode.OH

def formula(tax_unit, period, parameters):
itax_before_credits = tax_unit("oh_income_tax_before_credits", period)
itax_before_credits = tax_unit("oh_income_tax_before_non_refundable_credits", period)
nonrefundable_credits = tax_unit("oh_non_refundable_credits", period)
return max_(0, itax_before_credits - nonrefundable_credits)

0 comments on commit 17be7bd

Please sign in to comment.