From af8980105ab0c7f33b269073d48a0a67019185d5 Mon Sep 17 00:00:00 2001 From: cantor-set <32692347+cantor-set@users.noreply.github.com> Date: Tue, 9 Apr 2024 23:48:35 -0400 Subject: [PATCH] Update modules/async_worker.py Implemented suggested change Co-authored-by: Manuel Schmid <9307310+mashb1t@users.noreply.github.com> --- modules/async_worker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/async_worker.py b/modules/async_worker.py index 4e02e6e1..33c6d95e 100644 --- a/modules/async_worker.py +++ b/modules/async_worker.py @@ -428,7 +428,7 @@ def worker(): progressbar(async_task, 3, 'Loading models ...') # Parse lora references from prompt - loras = parse_lora_references_from_prompt(prompt, loras, loras_limit=modules.config.default_max_lora_number) + loras = parse_lora_references_from_prompt(prompt, loras, modules.config.default_max_lora_number) pipeline.refresh_everything(refiner_model_name=refiner_model_name, base_model_name=base_model_name, loras=loras, base_model_additional_loras=base_model_additional_loras,