@@ -58,8 +58,6 @@ def _get_delayed_object_dict(total_lst, nodes_dict, source_handle_dict, pyiron_p
5858 )
5959 for k , v in input_dict .items ()
6060 }
61- # print(nodes_dict[key], source_handle_dict.get(key, []))
62- # print(kwargs)
6361 delayed_object_dict [key ] = job (
6462 funct = nodes_dict [key ],
6563 output_key_lst = source_handle_dict .get (key , []),
@@ -207,17 +205,9 @@ def load_workflow_json(project, file_name):
207205def write_workflow_json (delayed_object , file_name = "workflow.json" ):
208206 nodes_dict , edges_lst = delayed_object .get_graph ()
209207 nodes_dict , edges_lst = _remove_server_obj (nodes_dict = nodes_dict , edges_lst = edges_lst )
210-
211- # import ipdb; ipdb.set_trace()
212208 delayed_object_updated_dict , match_dict = _get_unique_objects (nodes_dict = nodes_dict )
213-
214- # import ipdb; ipdb.set_trace()
215209 connection_dict , lookup_dict = _get_connection_dict (delayed_object_updated_dict = delayed_object_updated_dict , match_dict = match_dict )
216-
217- # import ipdb; ipdb.set_trace()
218210 nodes_new_dict = _get_nodes (connection_dict = connection_dict , delayed_object_updated_dict = delayed_object_updated_dict )
219-
220- # import ipdb; ipdb.set_trace()
221211 edges_new_lst = _get_edges_dict (edges_lst = edges_lst , nodes_dict = nodes_dict , connection_dict = connection_dict , lookup_dict = lookup_dict )
222212
223213 nodes_store_dict = {}
@@ -232,7 +222,5 @@ def write_workflow_json(delayed_object, file_name="workflow.json"):
232222 else :
233223 nodes_store_dict [k ] = v
234224
235- # import ipdb; ipdb.set_trace()
236-
237225 with open (file_name , "w" ) as f :
238226 json .dump ({"nodes" : nodes_store_dict , "edges" : edges_new_lst }, f )
0 commit comments