Fixed typo in DynamicSlot input code

This commit is contained in:
Jedrzej Kosinski 2025-12-01 22:41:46 -08:00
parent 7c8ff7541e
commit 2791b20d67

View File

@ -1058,7 +1058,7 @@ class DynamicSlot(ComfyTypeI):
optional = True
self.slot.tooltip = slot.tooltip if slot.tooltip is not None else tooltip
self.slot.lazy = slot.lazy if slot.lazy is not None else lazy
self.slot.extra_dict = self.extra_dict if extra_dict is not None else extra_dict
self.slot.extra_dict = slot.extra_dict if slot.extra_dict is not None else extra_dict
super().__init__(slot.id, self.slot.display_name, optional, self.slot.tooltip, self.slot.lazy, self.slot.extra_dict)
self.inputs = inputs
self.force_input = None