Skip to content

Commit f80510b

Browse files
hlkysayakpaul
authored andcommitted
Fix pipeline_stable_audio formating (#10114)
1 parent de77e22 commit f80510b

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

Lines changed: 2 additions & 1 deletion
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)