Skip to content

Commit 435f6b7

Browse files
authored
[Docs] fix docstring typo in SD3 pipeline (#9765)
* fix docstring typo in SD3 pipeline * fix docstring typo in SD3 pipeline
1 parent 1d1e1a2 commit 435f6b7

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/diffusers/pipelines/stable_diffusion_3/pipeline_stable_diffusion_3.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -762,8 +762,8 @@ 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
766-
of a plain tuple.
765+
Whether or not to return a [`~pipelines.stable_diffusion_3.StableDiffusion3PipelineOutput`] instead of
766+
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
769769
`self.processor` in

src/diffusers/pipelines/stable_diffusion_3/pipeline_stable_diffusion_3_img2img.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -800,8 +800,8 @@ 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
804-
of a plain tuple.
803+
Whether or not to return a [`~pipelines.stable_diffusion_3.StableDiffusion3PipelineOutput`] instead of
804+
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
807807
`self.processor` in

src/diffusers/pipelines/stable_diffusion_3/pipeline_stable_diffusion_3_inpaint.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -921,8 +921,8 @@ 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
925-
of a plain tuple.
924+
Whether or not to return a [`~pipelines.stable_diffusion_3.StableDiffusion3PipelineOutput`] instead of
925+
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
928928
with the following arguments: `callback_on_step_end(self: DiffusionPipeline, step: int, timestep: int,

0 commit comments

Comments
 (0)