1
mirror of https://github.com/comfyanonymous/ComfyUI.git synced 2025-08-02 15:04:50 +08:00

Refuse to load api nodes on old pyav version. (#7981)

This commit is contained in:
comfyanonymous
2025-05-07 14:27:16 -07:00
committed by GitHub
parent 16417b40d9
commit b9980592c4
2 changed files with 13 additions and 0 deletions

View File

@@ -2289,6 +2289,9 @@ def init_builtin_api_nodes():
"nodes_pika.py",
]
if not load_custom_node(os.path.join(api_nodes_dir, "canary.py"), module_parent="comfy_api_nodes"):
return api_nodes_files
import_failed = []
for node_file in api_nodes_files:
if not load_custom_node(os.path.join(api_nodes_dir, node_file), module_parent="comfy_api_nodes"):