Skip to content

Commit

Permalink
correct zonal mean error message
Browse files Browse the repository at this point in the history
  • Loading branch information
brianpm committed Dec 1, 2023
1 parent cf2128c commit 3be03db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/plotting/zonal_mean_B.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ def zonal_mean_B(adfobj):
print(f"Error: expecting lev for both case: {has_lev} and ref: {has_lev_ref}")
continue
if len(mdata['lev']) != len(odata['lev']):
print(f"Error: zonal mean contour expects `lev` dim to have same size, got {len(mdata['lev'])} and {odata['lev']}")
print(f"Error: zonal mean contour expects `lev` dim to have same size, got {len(mdata['lev'])} and {len(odata['lev'])}")
continue
plot_name_log = plot_loc / f"{var}_{s}_Zonal_logp_Mean.{plot_type}"
if plot_name_log not in logp_zonal_skip:
Expand Down

0 comments on commit 3be03db

Please sign in to comment.