diff options
author | AUTOMATIC <16777216c@gmail.com> | 2023-05-18 07:16:33 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2023-05-18 07:16:33 +0000 |
commit | bb431df52bf3dc5e233e42907f2d8f56e4fb6c0c (patch) | |
tree | 93da658d982db1ed6a8fc2daba4670c53e920044 | |
parent | f9be4dc498e21b1ad2efadf5408c773e09d37fe5 (diff) | |
download | stable-diffusion-webui-gfx803-bb431df52bf3dc5e233e42907f2d8f56e4fb6c0c.tar.gz stable-diffusion-webui-gfx803-bb431df52bf3dc5e233e42907f2d8f56e4fb6c0c.tar.bz2 stable-diffusion-webui-gfx803-bb431df52bf3dc5e233e42907f2d8f56e4fb6c0c.zip |
python linter fixes
-rw-r--r-- | modules/ui.py | 2 | ||||
-rw-r--r-- | modules/ui_extra_networks.py | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/modules/ui.py b/modules/ui.py index 386f493b..3be5257a 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -974,7 +974,7 @@ def create_ui(): ],
show_progress=False,
)
-
+
img2img_interrogate.click(
fn=lambda *args: process_interrogate(interrogate, *args),
**interrogate_args,
diff --git a/modules/ui_extra_networks.py b/modules/ui_extra_networks.py index 8669cc1a..8bd0722e 100644 --- a/modules/ui_extra_networks.py +++ b/modules/ui_extra_networks.py @@ -1,7 +1,6 @@ import os.path
import urllib.parse
from pathlib import Path
-from PIL import PngImagePlugin
from modules import shared
from modules.images import read_info_from_image, save_image_with_geninfo
|