Skip to content

Commit 6c85fcd

Browse files
committed
update
1 parent 085e9cb commit 6c85fcd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/diffusers/modular_pipelines/wan/denoise.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
from ...utils import logging
2424
from ..modular_pipeline import (
2525
BlockState,
26-
LoopSequentialModularPipelineBlockss,
26+
LoopSequentialPipelineBlocks,
2727
ModularPipelineBlocks,
2828
PipelineState,
2929
)
@@ -53,7 +53,7 @@ def expected_components(self) -> List[ComponentSpec]:
5353
def description(self) -> str:
5454
return (
5555
"Step within the denoising loop that denoise the latents with guidance. "
56-
"This block should be used to compose the `sub_blocks` attribute of a `LoopSequentialModularPipelineBlockss` "
56+
"This block should be used to compose the `sub_blocks` attribute of a `LoopSequentialPipelineBlocks` "
5757
"object (e.g. `WanDenoiseLoopWrapper`)"
5858
)
5959

@@ -145,7 +145,7 @@ def expected_components(self) -> List[ComponentSpec]:
145145
def description(self) -> str:
146146
return (
147147
"step within the denoising loop that update the latents. "
148-
"This block should be used to compose the `sub_blocks` attribute of a `LoopSequentialModularPipelineBlockss` "
148+
"This block should be used to compose the `sub_blocks` attribute of a `LoopSequentialPipelineBlocks` "
149149
"object (e.g. `WanDenoiseLoopWrapper`)"
150150
)
151151

@@ -181,7 +181,7 @@ def __call__(self, components: WanModularPipeline, block_state: BlockState, i: i
181181
return components, block_state
182182

183183

184-
class WanDenoiseLoopWrapper(LoopSequentialModularPipelineBlockss):
184+
class WanDenoiseLoopWrapper(LoopSequentialPipelineBlocks):
185185
model_name = "wan"
186186

187187
@property

0 commit comments

Comments
 (0)