We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60cb67f commit 6c7181cCopy full SHA for 6c7181c
src/python_workflow_definition/pyiron_base.py
@@ -102,7 +102,7 @@ def get_list(**kwargs) -> list:
102
103
104
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_")]
+ server_lst = [k for k in nodes_dict.keys() if k.startswith("_server_obj_")]
106
for s in server_lst:
107
del nodes_dict[s]
108
edges_lst = [ep for ep in edges_lst if s not in ep]
0 commit comments