Merge pull request #4904 from QualiaRain/fix/assorted-typos

Fix assorted small typos: dead __str__, unformatted messages, preview min-height
This commit is contained in:
Vladimir Mandic
2026-06-11 08:20:07 +02:00
committed by GitHub
6 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -347,7 +347,7 @@ class DemoFusionSDXLPipeline(DiffusionPipeline, FromSingleFileMixin, LoraLoaderM
# DemoFusion specific checks
if max(height, width) % 1024 != 0:
log.error('DemoFusion: resolution={width}x{height} long side must be divisible by 1024')
log.error(f'DemoFusion: resolution={width}x{height} long side must be divisible by 1024')
return None
if num_images_per_prompt != 1: