Skip to content

Commit 6c7181c

Browse files
authored
Update pyiron_base.py
1 parent 60cb67f commit 6c7181c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/python_workflow_definition/pyiron_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def get_list(**kwargs) -> list:
102102

103103

104104
def _remove_server_obj(nodes_dict: dict, edges_lst: list):
105-
server_lst = [k for k in nodes_dict.keys() if k.startswith("server_obj_")]
105+
server_lst = [k for k in nodes_dict.keys() if k.startswith("_server_obj_")]
106106
for s in server_lst:
107107
del nodes_dict[s]
108108
edges_lst = [ep for ep in edges_lst if s not in ep]

0 commit comments

Comments
 (0)