Skip to content

Commit 37c74ed

Browse files
committed
change dict pop to dict get for the gazillionth time
1 parent 642316f commit 37c74ed

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
@@ -231,7 +231,7 @@ def parse_config(yaml_dict: dict):
231231
launcher = SimpleLauncher()
232232
_container_dict = None
233233
else:
234-
_container_dict = yaml_dict.pop("container", container_dict)
234+
_container_dict = yaml_dict.get("container", container_dict)
235235
assert _container_dict is not None
236236
launcher = ContainerizedLauncher(
237237
**_container_dict,

0 commit comments

Comments
 (0)