Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
jdebacker committed Jul 27, 2024
1 parent 0b1cfae commit c62aadd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ogcore/tax.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,10 @@ def net_taxes(
"""
T_I = income_tax_liab(r, w, b, n, factor, t, j, method, e, etr_params, p)
pension = pensions.pension_amount(w, n, theta, t, j, shift, method, e, p)
# TODO: replace "1" with Y in the args below when want NDC functions
pension = pensions.pension_amount(
r, w, n, 1, theta, t, j, shift, method, e, factor, p
)
T_BQ = bequest_tax_liab(r, b, bq, t, j, method, p)
T_W = wealth_tax_liab(r, b, t, j, method, p)

Expand Down

0 comments on commit c62aadd

Please sign in to comment.