Skip to content

Commit

Permalink
fix merge issues
Browse files Browse the repository at this point in the history
  • Loading branch information
mschwoer committed Jan 9, 2025
1 parent 4980188 commit c23115d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions alphadia/workflow/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ def _update(
"""
for key, update_value in update_config.items():
if key not in target_config:
raise KeyAddedConfigError(key, experiment_name)
raise KeyAddedConfigError(key, config_name)

target_value = target_config[key]
tracking_value = tracking_dict[key]
Expand All @@ -194,7 +194,7 @@ def _update(
)
):
raise TypeMismatchConfigError(
key, experiment_name, f"{type(update_value)} != {type(target_value)}"
key, config_name, f"{type(update_value)} != {type(target_value)}"
)

if isinstance(target_value, dict):
Expand Down

0 comments on commit c23115d

Please sign in to comment.