Skip to content

Commit 98ac587

Browse files
committed
fix docstring typo in SD3 pipeline
1 parent 24c7d57 commit 98ac587

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/diffusers/pipelines/stable_diffusion_3/pipeline_stable_diffusion_3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -762,7 +762,7 @@ def __call__(
762762
The output format of the generate image. Choose between
763763
[PIL](https://pillow.readthedocs.io/en/stable/): `PIL.Image.Image` or `np.array`.
764764
return_dict (`bool`, *optional*, defaults to `True`):
765-
Whether or not to return a [`~pipelines.stable_diffusion_xl.StableDiffusionXLPipelineOutput`] instead
765+
Whether or not to return a [`~pipelines.stable_diffusion_3.StableDiffusion3PipelineOutput`] instead
766766
of a plain tuple.
767767
joint_attention_kwargs (`dict`, *optional*):
768768
A kwargs dictionary that if specified is passed along to the `AttentionProcessor` as defined under

src/diffusers/pipelines/stable_diffusion_3/pipeline_stable_diffusion_3_img2img.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -800,7 +800,7 @@ def __call__(
800800
The output format of the generate image. Choose between
801801
[PIL](https://pillow.readthedocs.io/en/stable/): `PIL.Image.Image` or `np.array`.
802802
return_dict (`bool`, *optional*, defaults to `True`):
803-
Whether or not to return a [`~pipelines.stable_diffusion_xl.StableDiffusionXLPipelineOutput`] instead
803+
Whether or not to return a [`~pipelines.stable_diffusion_3.StableDiffusion3PipelineOutput`] instead
804804
of a plain tuple.
805805
joint_attention_kwargs (`dict`, *optional*):
806806
A kwargs dictionary that if specified is passed along to the `AttentionProcessor` as defined under

src/diffusers/pipelines/stable_diffusion_3/pipeline_stable_diffusion_3_inpaint.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -921,7 +921,7 @@ def __call__(
921921
The output format of the generate image. Choose between
922922
[PIL](https://pillow.readthedocs.io/en/stable/): `PIL.Image.Image` or `np.array`.
923923
return_dict (`bool`, *optional*, defaults to `True`):
924-
Whether or not to return a [`~pipelines.stable_diffusion_xl.StableDiffusionXLPipelineOutput`] instead
924+
Whether or not to return a [`~pipelines.stable_diffusion_3.StableDiffusion3PipelineOutput`] instead
925925
of a plain tuple.
926926
callback_on_step_end (`Callable`, *optional*):
927927
A function that calls at the end of each denoising steps during the inference. The function is called

0 commit comments

Comments
 (0)