Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make necessary bugfixes to get aerosol cycling going #1349

Merged
merged 15 commits into from
Mar 1, 2023
Merged
Prev Previous commit
Next Next commit
Fix possible bug with attributes in increment
CoryMartin-NOAA committed Feb 23, 2023

Verified

This commit was signed with the committer’s verified signature. The key has expired.
domdfcoding Dominic Davis-Foster
commit d4071bf47a45879172304641744dd7819bcf4323
2 changes: 1 addition & 1 deletion ush/python/pygfs/task/analysis.py
Original file line number Diff line number Diff line change
@@ -86,7 +86,7 @@ def add_fv3_increments(self, inc_file_tmpl: str, bkg_file_tmpl: str, incvars: Li
rstfile.variables[vname][:] = anl[:]
try:
rstfile.variables[vname].delncattr('checksum') # remove the checksum so fv3 does not complain
except AttributeError:
except (AttributeError, RuntimeError):
pass # checksum is missing, move on

@logit(logger)