simplify processing call

This commit is contained in:
Vladimir Mandic
2023-12-27 20:24:41 -05:00
parent 1a0e3c6bee
commit 8944d3bdfa
2 changed files with 18 additions and 17 deletions
+1 -1
View File
@@ -919,7 +919,7 @@ def process_images_inner(p: StableDiffusionProcessing) -> Processed:
elif shared.backend == shared.Backend.DIFFUSERS:
from modules.processing_diffusers import process_diffusers
x_samples_ddim = process_diffusers(p, p.seeds, p.prompts, p.negative_prompts)
x_samples_ddim = process_diffusers(p)
else:
raise ValueError(f"Unknown backend {shared.backend}")