Unverified Commit d0ec6601 authored by VLT Media's avatar VLT Media Committed by GitHub
Browse files

Bug: Fixed Image 2 Image example (#11619)

Bug: Fixed Image 2 Image example where a PIL.Image was improperly being asked for an item via index.
parent a7aa8bf2
......@@ -113,7 +113,7 @@ image = pipe(
height=832,
width=480
).images[0]
image[0].save("output.png")
image.save("output.png")
```
## SanaSprintPipeline
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment