mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-12-20 19:42:59 +08:00
Add missing input params to DynamicCombo.Input
This commit is contained in:
parent
68153f6c04
commit
8a0a00442b
@ -890,8 +890,9 @@ class DynamicCombo(ComfyTypeI):
|
|||||||
}
|
}
|
||||||
|
|
||||||
class Input(DynamicInput):
|
class Input(DynamicInput):
|
||||||
def __init__(self, id: str, options: list[DynamicCombo.Option]):
|
def __init__(self, id: str, options: list[DynamicCombo.Option],
|
||||||
super().__init__(id)
|
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)
|
||||||
self.options = options
|
self.options = options
|
||||||
|
|
||||||
def get_dynamic(self) -> list[Input]:
|
def get_dynamic(self) -> list[Input]:
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user