mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
fix(backend): typo
`relavent` -> `relevant`
This commit is contained in:
parent
4d2dd6bb10
commit
c5b963f1a6
@ -92,10 +92,10 @@ class BatchManager(BatchManagerBase):
|
|||||||
for npath in sorted_nodes:
|
for npath in sorted_nodes:
|
||||||
node = graph.get_node(npath)
|
node = graph.get_node(npath)
|
||||||
for index, bdl in enumerate(batch.data):
|
for index, bdl in enumerate(batch.data):
|
||||||
relavent_bd = [bd for bd in bdl if bd.node_id in node.id]
|
relevant_bd = [bd for bd in bdl if bd.node_id in node.id]
|
||||||
if not relavent_bd:
|
if not relevant_bd:
|
||||||
continue
|
continue
|
||||||
for bd in relavent_bd:
|
for bd in relevant_bd:
|
||||||
batch_index = batch_indices[index]
|
batch_index = batch_indices[index]
|
||||||
datum = bd.items[batch_index]
|
datum = bd.items[batch_index]
|
||||||
key = bd.field_name
|
key = bd.field_name
|
||||||
|
Loading…
Reference in New Issue
Block a user