From a662567f6c6d1821bc60b73ce48cdfce2fa91fa3 Mon Sep 17 00:00:00 2001 From: lllyasviel Date: Wed, 15 Nov 2023 02:25:49 -0800 Subject: [PATCH] fix #936 --- 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 3860e452..a6807547 100644 --- a/modules/async_worker.py +++ b/modules/async_worker.py @@ -384,7 +384,7 @@ def worker(): for i, t in enumerate(tasks): if abs(float(cfg_scale) - 1.0) < 1e-4: - progressbar(10, f'Skipped negative #{i + 1} ...') + # progressbar(10, f'Skipped negative #{i + 1} ...') t['uc'] = pipeline.clone_cond(t['c']) else: progressbar(10, f'Encoding negative #{i + 1} ...')