mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-12-20 11:32:58 +08:00
Make sure other unfinished dynamic types are not accidentally used
This commit is contained in:
parent
59381ecbd2
commit
13aa23dff4
@ -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)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user