Make sure other unfinished dynamic types are not accidentally used

This commit is contained in:
Jedrzej Kosinski 2025-11-13 15:49:41 -08:00
parent 59381ecbd2
commit 13aa23dff4

View File

@ -838,6 +838,7 @@ class AutogrowDynamic(ComfyTypeI):
def __init__(self, id: str, template_input: Input, min: int=1, max: int=None, def __init__(self, id: str, template_input: Input, min: int=1, max: int=None,
display_name: str=None, optional=False, tooltip: str=None, lazy: bool=None, extra_dict=None): display_name: str=None, optional=False, tooltip: str=None, lazy: bool=None, extra_dict=None):
super().__init__(id, display_name, optional, tooltip, lazy, extra_dict) super().__init__(id, display_name, optional, tooltip, lazy, extra_dict)
raise Exception("AutogrowDynamic is not implemented yet, and will likely be renamed for actual implementation.")
self.template_input = template_input self.template_input = template_input
if min is not None: if min is not None:
assert(min >= 1) assert(min >= 1)