Skip to content

Commit 8a450c3

Browse files
authored
Fix pipeline_stable_audio formating (#10114)
1 parent 9ff7243 commit 8a450c3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/diffusers/pipelines/stable_audio/pipeline_stable_audio.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
from ..pipeline_utils import AudioPipelineOutput, DiffusionPipeline
3535
from .modeling_stable_audio import StableAudioProjectionModel
3636

37+
3738
if is_torch_xla_available():
3839
import torch_xla.core.xla_model as xm
3940

@@ -732,7 +733,7 @@ def __call__(
732733
if callback is not None and i % callback_steps == 0:
733734
step_idx = i // getattr(self.scheduler, "order", 1)
734735
callback(step_idx, t, latents)
735-
736+
736737
if XLA_AVAILABLE:
737738
xm.mark_step()
738739

0 commit comments

Comments
 (0)