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 a136031 commit 54c26fbCopy full SHA for 54c26fb
generate_python_code.py
@@ -104,7 +104,7 @@ def dfs(key: str) -> None:
104
# Add the key and its corresponding data to the load order list.
105
load_order.append((key, data[key], is_loader))
106
107
- # Load Loader keys first
+ # Load Loader, encoder, and keys without dependenciesfirst
108
for key in data:
109
class_def = NODE_CLASS_MAPPINGS[data[key]['class_type']]()
110
if class_def.CATEGORY == 'loaders' or class_def.FUNCTION in ['encode'] or not any(isinstance(val, list) for val in data[key]['inputs'].values()):
0 commit comments