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

string constructor #1008

Merged
merged 9 commits into from
Dec 19, 2023
Merged
Prev Previous commit
Next Next commit
pre-commit fix
  • Loading branch information
lee1043 committed Dec 18, 2023
commit 1184e54f36c7314386c41ccc9812f1311864c9a6
4 changes: 2 additions & 2 deletions pcmdi_metrics/variability_mode/variability_modes_driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@

# Check given model option
models = param.modnames

# Include all models if conditioned
if ("all" in [m.lower() for m in models]) or (models == "all"):
model_index_path = re.split(". |_", modpath.split("/")[-1]).index("%(model)")
Expand All @@ -182,7 +182,7 @@
for p in glob.glob(
fill_template(
modpath, mip=mip, exp=exp, model="*", realization="*", variable=var
)
)
)
]
# remove duplicates
Expand Down
Loading