Fix DynamicSlot get_all

This commit is contained in:
Jedrzej Kosinski 2025-12-09 19:01:07 -08:00
parent 43856bd49a
commit ad1a0f98bb

View File

@ -1109,7 +1109,7 @@ class DynamicSlot(ComfyTypeI):
return [self.slot] + self.inputs return [self.slot] + self.inputs
def get_all(self) -> list[Input]: def get_all(self) -> list[Input]:
return [self] + [self.slot] + self.inputs return [self.slot] + self.inputs
def as_dict(self): def as_dict(self):
return super().as_dict() | prune_dict({ return super().as_dict() | prune_dict({