Skip to content

Commit

Permalink
fix bug in multistep config output dir
Browse files Browse the repository at this point in the history
  • Loading branch information
mschwoer committed Jan 20, 2025
1 parent 7d7b8b1 commit 0e4d91d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion alphadia/search_step.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def _init_config(
if extra_config:
extra_config_update = Config(extra_config, name=MULTISTEP_SEARCH)
# need to overwrite user-defined output folder here to have correct value in config dump
extra_config[ConfigKeys.OUTPUT_DIRECTORY] = output_folder
extra_config_update[ConfigKeys.OUTPUT_DIRECTORY] = output_folder
config_updates.append(extra_config_update)

config.update(config_updates, do_print=True)
Expand Down

0 comments on commit 0e4d91d

Please sign in to comment.