Skip to content

Commit

Permalink
pop container kwargs from psiflow_dict
Browse files Browse the repository at this point in the history
  • Loading branch information
svandenhaute committed Oct 29, 2023
1 parent 2d243d6 commit 0a71f83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion psiflow/execution.py
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ def load(

# create default executors
if "container" in psiflow_config:
launcher = ContainerizedLauncher(**psiflow_config["container"])
launcher = ContainerizedLauncher(**psiflow_config.pop("container"))
else:
launcher = SimpleLauncher()
htex = HighThroughputExecutor(
Expand Down

0 comments on commit 0a71f83

Please sign in to comment.