From c5b963f1a615c006171062a46551e72431eaa39a Mon Sep 17 00:00:00 2001 From: psychedelicious <4822129+psychedelicious@users.noreply.github.com> Date: Thu, 17 Aug 2023 12:47:58 +1000 Subject: [PATCH] fix(backend): typo `relavent` -> `relevant` --- invokeai/app/services/batch_manager.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/invokeai/app/services/batch_manager.py b/invokeai/app/services/batch_manager.py index 8d1bca5db2..0443eb5632 100644 --- a/invokeai/app/services/batch_manager.py +++ b/invokeai/app/services/batch_manager.py @@ -92,10 +92,10 @@ class BatchManager(BatchManagerBase): for npath in sorted_nodes: node = graph.get_node(npath) for index, bdl in enumerate(batch.data): - relavent_bd = [bd for bd in bdl if bd.node_id in node.id] - if not relavent_bd: + relevant_bd = [bd for bd in bdl if bd.node_id in node.id] + if not relevant_bd: continue - for bd in relavent_bd: + for bd in relevant_bd: batch_index = batch_indices[index] datum = bd.items[batch_index] key = bd.field_name