Skip to content

Commit

Permalink
Merge pull request PSLmodels#2878 from martinholmer/fix-cstest-warning
Browse files Browse the repository at this point in the history
Fix code-style-test warning in the `extend_tcja.py` script
  • Loading branch information
martinholmer authored Mar 2, 2025
2 parents 80c6db6 + 8a086fc commit 98b321d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extend_tcja.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def main():
pval = min(9e99, pval)
sys.stdout.write(f' "{pname}": ')
sys.stdout.write(f'{left_brace}"{year}": ')
sys.stdout.write(f'{pval*ifactor:.2f}')
sys.stdout.write(f'{(pval * ifactor):.2f}')
sys.stdout.write(f'{right_brace}{trailing_comma}\n')
else: # if parameter is not indexed
pval = pdata[pname][0]
Expand Down

0 comments on commit 98b321d

Please sign in to comment.