Skip to content

Commit

Permalink
black formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jdebacker committed Jul 22, 2022
1 parent 4aa131d commit 8361bff
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions ogcore/tax.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,9 @@ def MTR_wealth(b, h_wealth, m_wealth, p_wealth):
tau_prime (Numpy array): marginal tax rate on wealth, size = SxJ
"""
tau_prime = (
ETR_wealth(b, h_wealth, m_wealth, p_wealth) * 2 -
((h_wealth ** 2 * p_wealth * b ** 2) / (
(b * h_wealth + m_wealth) ** 2)))
tau_prime = ETR_wealth(b, h_wealth, m_wealth, p_wealth) * 2 - (
(h_wealth**2 * p_wealth * b**2) / ((b * h_wealth + m_wealth) ** 2)
)
return tau_prime


Expand Down

0 comments on commit 8361bff

Please sign in to comment.