diff options
author | catboxanon <122327233+catboxanon@users.noreply.github.com> | 2023-08-04 09:40:13 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-04 09:40:13 +0000 |
commit | 2dc2bc4ab53837e326a9c70ae250031ff6e8c929 (patch) | |
tree | 4db00cb3024b9b0a677f4cc79880565e731ef4ee /modules/img2img.py | |
parent | e219211ff6ffcdb4094334dbc4bff9a2d33af55c (diff) | |
download | stable-diffusion-webui-gfx803-2dc2bc4ab53837e326a9c70ae250031ff6e8c929.tar.gz stable-diffusion-webui-gfx803-2dc2bc4ab53837e326a9c70ae250031ff6e8c929.tar.bz2 stable-diffusion-webui-gfx803-2dc2bc4ab53837e326a9c70ae250031ff6e8c929.zip |
Fix string quotes
Diffstat (limited to 'modules/img2img.py')
-rw-r--r-- | modules/img2img.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/img2img.py b/modules/img2img.py index ed21e82c..b50678a6 100644 --- a/modules/img2img.py +++ b/modules/img2img.py @@ -129,7 +129,7 @@ def img2img(id_task: str, mode: int, prompt: str, negative_prompt: str, prompt_s mask = None
elif mode == 2: # inpaint
image, mask = init_img_with_mask["image"], init_img_with_mask["mask"]
- mask = mask.convert('RGBA').split()[3].convert('L').point(lambda x: 255 if x > 0 else 0)
+ mask = mask.convert("RGBA").split()[3].convert("L").point(lambda x: 255 if x > 0 else 0)
image = image.convert("RGB")
elif mode == 3: # inpaint sketch
image = inpaint_color_sketch
|