Skip to content

Commit

Permalink
Fix problem where last line accidentally deleted, and run through black
Browse files Browse the repository at this point in the history
  • Loading branch information
ekluzek committed Mar 9, 2024
1 parent c3025e5 commit 76217f2
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion cime_config/buildnml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,12 @@ def buildnml(case, caseroot, compname):
)
lnd_tuning_mode = closest

tuning_based_on = {"clm6_0_GSWP3v1": "clm5_0_GSWP3v1", "clm5_1_GSWP3v1": "clm5_0_GSWP3v1", "clm6_0_cam6.0": "clm5_0_cam6.0", "clm5_1_cam6.0": "clm5_0_cam6.0"}
tuning_based_on = {
"clm6_0_GSWP3v1": "clm5_0_GSWP3v1",
"clm5_1_GSWP3v1": "clm5_0_GSWP3v1",
"clm6_0_cam6.0": "clm5_0_cam6.0",
"clm5_1_cam6.0": "clm5_0_cam6.0",
}
for mode, based_on in tuning_based_on.items():
if lnd_tuning_mode == mode:
logger.warning(
Expand Down Expand Up @@ -397,3 +402,4 @@ def _main_func():


if __name__ == "__main__":
_main_func()

0 comments on commit 76217f2

Please sign in to comment.