Skip to content

Commit 642316f

Browse files
committed
change dict pop to dict get
1 parent 61dc109 commit 642316f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

psiflow/execution.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ def load(
383383
executors.append(executor)
384384

385385
# create default executors
386-
container_dict = psiflow_config.get("container", None)
386+
container_dict = psiflow_config.pop("container", None)
387387
if container_dict is not None:
388388
launcher = ContainerizedLauncher(**container_dict)
389389
else:

0 commit comments

Comments
 (0)