From 6c85fcd8997fde6999f491bbaa4ab69e4f774707 Mon Sep 17 00:00:00 2001 From: Dhruv Nair Date: Fri, 8 Aug 2025 18:52:55 +0200 Subject: [PATCH] update --- src/diffusers/modular_pipelines/wan/denoise.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/diffusers/modular_pipelines/wan/denoise.py b/src/diffusers/modular_pipelines/wan/denoise.py index 9528f7e548..9871d4ad61 100644 --- a/src/diffusers/modular_pipelines/wan/denoise.py +++ b/src/diffusers/modular_pipelines/wan/denoise.py @@ -23,7 +23,7 @@ from ...schedulers import UniPCMultistepScheduler from ...utils import logging from ..modular_pipeline import ( BlockState, - LoopSequentialModularPipelineBlockss, + LoopSequentialPipelineBlocks, ModularPipelineBlocks, PipelineState, ) @@ -53,7 +53,7 @@ class WanLoopDenoiser(ModularPipelineBlocks): def description(self) -> str: return ( "Step within the denoising loop that denoise the latents with guidance. " - "This block should be used to compose the `sub_blocks` attribute of a `LoopSequentialModularPipelineBlockss` " + "This block should be used to compose the `sub_blocks` attribute of a `LoopSequentialPipelineBlocks` " "object (e.g. `WanDenoiseLoopWrapper`)" ) @@ -145,7 +145,7 @@ class WanLoopAfterDenoiser(ModularPipelineBlocks): def description(self) -> str: return ( "step within the denoising loop that update the latents. " - "This block should be used to compose the `sub_blocks` attribute of a `LoopSequentialModularPipelineBlockss` " + "This block should be used to compose the `sub_blocks` attribute of a `LoopSequentialPipelineBlocks` " "object (e.g. `WanDenoiseLoopWrapper`)" ) @@ -181,7 +181,7 @@ class WanLoopAfterDenoiser(ModularPipelineBlocks): return components, block_state -class WanDenoiseLoopWrapper(LoopSequentialModularPipelineBlockss): +class WanDenoiseLoopWrapper(LoopSequentialPipelineBlocks): model_name = "wan" @property