From 08bcbc259686450a931d180e230c98eb7e765f4e Mon Sep 17 00:00:00 2001 From: Yuanjian Zhang Date: Thu, 12 Sep 2024 16:45:07 -0500 Subject: [PATCH] Fix missing headers in aerosol table --- gcpy/benchmark/modules/benchmark_funcs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcpy/benchmark/modules/benchmark_funcs.py b/gcpy/benchmark/modules/benchmark_funcs.py index 38118dd..10eec19 100644 --- a/gcpy/benchmark/modules/benchmark_funcs.py +++ b/gcpy/benchmark/modules/benchmark_funcs.py @@ -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"