Closed
Description
Describe the bug
Docs has typo in step 6 of "Deconstruct a basic pipeline" https://github.com/huggingface/diffusers/blob/main/docs/source/en/using-diffusers/write_own_pipeline.mdx
image = Image.fromarray((image * 255)).round().astype("uint8")
should be
image = Image.fromarray((image * 255).round().astype("uint8"))
Reproduction
import numpy as np
from PIL import Image
image = Image.fromarray((np.random.rand(32,32,3) * 255)).astype("uint8")
image2 = Image.fromarray((np.random.rand(32,32,3) * 255).astype("uint8"))
Logs
No response
System Info
n/a (documentation)