removed "prepare_class_clone" modification

This commit is contained in:
bigcat88 2025-07-10 04:36:17 +03:00
parent 8f0621ca7e
commit 982f4d6f31
No known key found for this signature in database
GPG Key ID: 1F0BF0EC3CF22721

View File

@ -1134,7 +1134,7 @@ class ComfyNodeV3:
type_clone: type[ComfyNodeV3] = type(f"CLEAN_{c_type.__name__}", c_type.__bases__, {}) type_clone: type[ComfyNodeV3] = type(f"CLEAN_{c_type.__name__}", c_type.__bases__, {})
# TODO: what parameters should be carried over? # TODO: what parameters should be carried over?
type_clone.SCHEMA = c_type.SCHEMA 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 # TODO: add anything we would want to expose inside node's execute function
return type_clone return type_clone