Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion ush/config.community.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ user:
MACHINE: hera
ACCOUNT: an_account
platform:
MODEL: FV3_GFS_v16_CONUS_25km
MET_INSTALL_DIR: ""
METPLUS_PATH: ""
CCPA_OBS_DIR: ""
Expand Down Expand Up @@ -50,3 +49,5 @@ task_plot_allvars:
global:
DO_ENSEMBLE: false
NUM_ENS_MEMBERS: 2
verification:
VX_FCST_MODEL_NAME: FV3_GFS_v16_CONUS_25km
2 changes: 1 addition & 1 deletion ush/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def load_config_for_setup(ushdir, default_config, user_config):
# config.
invalid = check_structure_dict(cfg_u, cfg_d)
if invalid:
errmsg = "Invalid key(s) specified in {user_config}:\n"
errmsg = f"Invalid key(s) specified in {user_config}:\n"
for entry in invalid:
errmsg = errmsg + f"{entry} = {invalid[entry]}\n"
errmsg = errmsg + f"\nCheck {default_config} for allowed user-specified variables\n"
Expand Down