mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
Fix next call in graphexecutionstate.next
This commit is contained in:
parent
d090be60e8
commit
7073dc0d5d
@ -882,7 +882,7 @@ class GraphExecutionState(BaseModel):
|
||||
if self.batch_indices[index] > 0:
|
||||
self.executed.clear()
|
||||
self.batch_indices[index] -= 1
|
||||
return next(self)
|
||||
return self.next(self)
|
||||
|
||||
# If next is still none, there's no next node, return None
|
||||
return next_node
|
||||
|
Loading…
Reference in New Issue
Block a user