Skip to content

Commit ad1a0f9

Browse files
committed
Fix DynamicSlot get_all
1 parent 43856bd commit ad1a0f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

comfy_api/latest/_io.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1109,7 +1109,7 @@ def get_dynamic(self) -> list[Input]:
11091109
return [self.slot] + self.inputs
11101110

11111111
def get_all(self) -> list[Input]:
1112-
return [self] + [self.slot] + self.inputs
1112+
return [self.slot] + self.inputs
11131113

11141114
def as_dict(self):
11151115
return super().as_dict() | prune_dict({

0 commit comments

Comments
 (0)