Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,13 @@ def _group_edges(edges_lst):


def _get_source(nodes_dict, delayed_object_dict, source, sourceHandle):
if source in delayed_object_dict.keys():
if source in delayed_object_dict.keys() and sourceHandle is not None:
return delayed_object_dict[source].__getattr__("output").__getattr__(sourceHandle)
elif source in delayed_object_dict.keys():
return delayed_object_dict[source]
else:
return nodes_dict[source]


def _get_delayed_object_dict(total_lst, nodes_dict, source_handle_dict, pyiron_project):
delayed_object_dict = {}
for item in total_lst:
Expand Down
Loading