Skip to content

Commit

Permalink
Merge pull request #256 from CovertLab/special-char
Browse files Browse the repository at this point in the history
Fix usage of merge_config_dicts
  • Loading branch information
thalassemia authored Nov 29, 2024
2 parents 33e33d3 + 95b3c74 commit 8c68fa5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runscripts/workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ def main():
if args.config is not None:
config_file = args.config
with open(args.config, "r") as f:
config = SimConfig.merge_config_dicts(config, json.load(f))
SimConfig.merge_config_dicts(config, json.load(f))

experiment_id = config["experiment_id"]
if experiment_id is None:
Expand Down

0 comments on commit 8c68fa5

Please sign in to comment.