Skip to content

Commit

Permalink
Fix missing headers in aerosol table
Browse files Browse the repository at this point in the history
  • Loading branch information
yuanjianz authored Sep 12, 2024
1 parent cfe6b55 commit 08bcbc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gcpy/benchmark/modules/benchmark_funcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -4175,7 +4175,7 @@ def print_aerosol_metrics(data, species_list, filename, title, label):

# Print top header
print("%" * 79, file=f)
print(f" {title} for {year} in {devstr}")
print(f" {title} for {year} in {devstr}", file=f)
print(" (weighted by the number of days per month)", file=f)
print("%" * 79, file=f)
line = "\n" + " " * 40 + "Strat Trop Strat+Trop\n"
Expand Down

0 comments on commit 08bcbc2

Please sign in to comment.