From 642316fcd354ee3782320b1352987418451fa612 Mon Sep 17 00:00:00 2001 From: svdenhau Date: Thu, 15 Feb 2024 12:02:14 +0100 Subject: [PATCH] change dict pop to dict get --- psiflow/execution.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/psiflow/execution.py b/psiflow/execution.py index 2bc8508..d1aa175 100644 --- a/psiflow/execution.py +++ b/psiflow/execution.py @@ -383,7 +383,7 @@ def load( executors.append(executor) # create default executors - container_dict = psiflow_config.get("container", None) + container_dict = psiflow_config.pop("container", None) if container_dict is not None: launcher = ContainerizedLauncher(**container_dict) else: