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