From 982f4d6f31eef4fadaa272fcd0f5b9f04c0ec6a9 Mon Sep 17 00:00:00 2001 From: bigcat88 Date: Thu, 10 Jul 2025 04:36:17 +0300 Subject: [PATCH] removed "prepare_class_clone" modification --- comfy_api/v3/io.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comfy_api/v3/io.py b/comfy_api/v3/io.py index 67509fb29..6a291b86a 100644 --- a/comfy_api/v3/io.py +++ b/comfy_api/v3/io.py @@ -1134,7 +1134,7 @@ class ComfyNodeV3: type_clone: type[ComfyNodeV3] = type(f"CLEAN_{c_type.__name__}", c_type.__bases__, {}) # TODO: what parameters should be carried over? type_clone.SCHEMA = c_type.SCHEMA - type_clone.hidden = HiddenHolder.from_dict(hidden_inputs) if hidden_inputs is not None else None + type_clone.hidden = HiddenHolder.from_dict(hidden_inputs) # TODO: add anything we would want to expose inside node's execute function return type_clone