Skip to content

Commit

Permalink
adding 2022 tax form
Browse files Browse the repository at this point in the history
  • Loading branch information
vrathi101 committed Dec 4, 2024
1 parent 2971568 commit c494157
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ metadata:
reference:
- title: 2023 Montana Form 2 Individual Income Tax Instructions, What's New?, Property Tax Rebates
href: https://mtrevenue.gov/wp-content/uploads/dlm_uploads/2023/12/Form_2_2023_Instructions.pdf#page=5
- title: 2022 Montana Property Tax Rebate Claim, Form MPTR22
href: https://mtrevenue.gov/wp-content/uploads/dlm_uploads/2023/08/2022-Montana-Property-Tax-Rebate-Form-MPTR22.pdf
# Legal code does not mention updated property tax rebate amount
- title: 2023 Montana Legislature, House Bill 222
href: https://archive.legmt.gov/bills/2023/billhtml/HB0222.htm#:~:text=A%20BILL%20FOR%20AN%20ACT,providing%20a%20penalty%20for%20false
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@ def formula(tax_unit, period, parameters):
p = parameters(period).gov.states.mt.tax.income.credits.rebate.property
person = tax_unit.members
mt_property_tax = person("real_estate_taxes", period)
return min_(p.amount, mt_property_tax)
tax_unit_mt_property_tax = tax_unit.sum(mt_property_tax)
return min_(p.amount, tax_unit_mt_property_tax)

0 comments on commit c494157

Please sign in to comment.