Skip to content

Commit 0975d0c

Browse files
committed
bugfix
1 parent 6ae2ea3 commit 0975d0c

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
@@ -243,7 +243,7 @@ def parse_config(yaml_dict: dict):
243243
if len(provider_keys) == 0:
244244
provider = LocalProvider(launcher=launcher) # noqa: F405
245245
elif len(provider_keys) == 1:
246-
provider_dict = _dict[provider_keys[0]]
246+
provider_dict = _dict.pop(provider_keys[0])
247247

248248
# if provider requests multiple nodes, switch to (containerized) SrunLauncher
249249
if (

0 commit comments

Comments
 (0)