mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-12-17 18:13:01 +08:00
Fix DynamicSlot get_all
This commit is contained in:
parent
43856bd49a
commit
ad1a0f98bb
@ -1109,7 +1109,7 @@ class DynamicSlot(ComfyTypeI):
|
||||
return [self.slot] + self.inputs
|
||||
|
||||
def get_all(self) -> list[Input]:
|
||||
return [self] + [self.slot] + self.inputs
|
||||
return [self.slot] + self.inputs
|
||||
|
||||
def as_dict(self):
|
||||
return super().as_dict() | prune_dict({
|
||||
|
||||
Loading…
Reference in New Issue
Block a user