Skip to content

Commit 9c290f4

Browse files
fix(nodes): add version to iterate and collect
1 parent 500f304 commit 9c290f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

invokeai/app/services/graph.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ class IterateInvocationOutput(BaseInvocationOutput):
182182

183183

184184
# TODO: Fill this out and move to invocations
185-
@invocation("iterate")
185+
@invocation("iterate", version="1.0.0")
186186
class IterateInvocation(BaseInvocation):
187187
"""Iterates over a list of items"""
188188

@@ -203,7 +203,7 @@ class CollectInvocationOutput(BaseInvocationOutput):
203203
)
204204

205205

206-
@invocation("collect")
206+
@invocation("collect", version="1.0.0")
207207
class CollectInvocation(BaseInvocation):
208208
"""Collects values into a collection"""
209209

0 commit comments

Comments
 (0)