Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
jdebacker committed Jan 27, 2025
1 parent 794cfee commit 3387969
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ogcore/fiscal.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,10 @@ def D_G_path(r_gov, dg_fixed_values, p):
if (t >= p.tG1) and (t < p.tG2):
G[t] = (
growth[t + 1]
* (p.rho_G * p.debt_ratio_ss * Y[t] + (1 - p.rho_G) * (D[t]/1.02))
* (
p.rho_G * p.debt_ratio_ss * Y[t]
+ (1 - p.rho_G) * (D[t] / 1.02)
)
- (1 + r_gov[t]) * D[t]
+ total_tax_revenue[t]
- agg_pension_outlays[t]
Expand Down

0 comments on commit 3387969

Please sign in to comment.