MCPcopy Create free account
hub / github.com/Comfy-Org/ComfyUI / get_display_node_id

Method get_display_node_id

comfy_execution/graph.py:53–56  ·  view source on GitHub ↗
(self, node_id)

Source from the content-addressed store, hash-verified

51 return self.ephemeral_parents.get(node_id, None)
52
53 def get_display_node_id(self, node_id):
54 while node_id in self.ephemeral_display:
55 node_id = self.ephemeral_display[node_id]
56 return node_id
57
58 def all_node_ids(self):
59 return set(self.original_prompt.keys()).union(set(self.ephemeral_prompt.keys()))

Callers 5

execute_asyncMethod · 0.95
executeFunction · 0.80
_send_progress_stateMethod · 0.80
update_handlerMethod · 0.80
stage_node_executionMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected