From f3c6d7adf2f4e93b083070b74b5471b9e350bd7a Mon Sep 17 00:00:00 2001 From: Hacker 17082006 Date: Mon, 13 Feb 2023 18:19:42 +0700 Subject: [PATCH] . --- nodes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodes.py b/nodes.py index 8fa49932..bb0392c0 100644 --- a/nodes.py +++ b/nodes.py @@ -607,7 +607,7 @@ def load_custom_nodes(): if getattr(custom_nodes, "NODE_CLASS_MAPPINGS") is not None: NODE_CLASS_MAPPINGS.update(custom_nodes.NODE_CLASS_MAPPINGS) else: - NODE_CLASS_MAPPINGS[possible_module] = custom_nodes + print(f"Skip {possible_module} node due to the lack of NODE_CLASS_MAPPINGS.") except ImportError as e: print(f"Cannot import {possible_module} node.") print(e)