Skip to content

Commit

Permalink
Refactor Edaflow so that multiple nodes can use the same options
Browse files Browse the repository at this point in the history
  • Loading branch information
Pocketkid2 authored and olofk committed Jul 6, 2022
1 parent 66d8abe commit ef4e9b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion edalize/flows/edaflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def extract_tool_options(self):
if opt_name in ToolClass.get_tool_options():
tool_options[tool_name] = merge_dict(
tool_options[tool_name],
{opt_name: edam_flow_opts.pop(opt_name)},
{opt_name: edam_flow_opts.get(opt_name)},
)

self.edam["tool_options"] = tool_options
Expand Down

0 comments on commit ef4e9b0

Please sign in to comment.