Skip to content

Commit

Permalink
Merge branch 'recipe_test_workflow_prototype' of github.com:ESMValGro…
Browse files Browse the repository at this point in the history
…up/ESMValTool into recipe_test_workflow_prototype

* 'recipe_test_workflow_prototype' of github.com:ESMValGroup/ESMValTool:
  Update esmvaltool/utils/recipe_test_workflow/app/configure/bin/configure.py
  Update esmvaltool/utils/recipe_test_workflow/app/configure/bin/configure.py
  Update esmvaltool/utils/recipe_test_workflow/app/configure/bin/configure.py
  • Loading branch information
ehogan committed Nov 21, 2024
2 parents 4bce5f3 + dd3f814 commit 99a4800
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def validate_user_config_file(user_config_file_content):
]
for user_config_key, usr_config_value in user_config_file_content.items():
try:
validatation_function = _validators[user_config_key]
validation_function = _validators[user_config_key]
except KeyError as err:
errors.append(
f'Key Error for {user_config_key.upper()}. May not be a valid '
Expand All @@ -116,8 +116,8 @@ def validate_user_config_file(user_config_file_content):
try:
print(f'Validating {user_config_key.upper()} with value '
f'"{usr_config_value}" using function '
f'{validatation_function.__name__.upper()}.')
validatation_function(usr_config_value)
f'{validation_function.__name__.upper()}.')
validation_function(usr_config_value)
except ValidationError as err:
errors.append(
f'Validation error for {user_config_key.upper()} with '
Expand Down

0 comments on commit 99a4800

Please sign in to comment.