Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
jdebacker committed Sep 12, 2024
1 parent 0506667 commit be7d5ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ogcore/fiscal.py
Original file line number Diff line number Diff line change
Expand Up @@ -394,12 +394,12 @@ def get_I_g(Y, p, method="SS"):
if method == "SS":
I_g = p.alpha_bs_I * Y
else:
I_g = p.alpha_bs_I[:p.T] * Y
I_g = p.alpha_bs_I[: p.T] * Y
else:
if method == "SS":
I_g = p.alpha_I[-1] * Y
else:
I_g = p.alpha_I[:p.T] * Y
I_g = p.alpha_I[: p.T] * Y

return I_g

Expand Down

0 comments on commit be7d5ae

Please sign in to comment.