mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2025-12-24 10:51:03 -08:00
FIX: No specific type for 'image' arg
Roll back
This commit is contained in:
parent
702edb288e
commit
8ec8901921
1 changed files with 1 additions and 1 deletions
|
|
@ -99,7 +99,7 @@ def decode_base64_to_image(encoding):
|
|||
raise HTTPException(status_code=500, detail="Invalid encoded image") from e
|
||||
|
||||
|
||||
def encode_pil_to_base64(image: Image.Image):
|
||||
def encode_pil_to_base64(image):
|
||||
with io.BytesIO() as output_bytes:
|
||||
if isinstance(image, str):
|
||||
return image
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue