diff options
author | AUTOMATIC <16777216c@gmail.com> | 2023-05-10 06:02:23 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2023-05-10 06:02:23 +0000 |
commit | 4b854806d98cf5ccd48e5cd99c172613da7937f0 (patch) | |
tree | d4126545441e5b25fbb8aa19011499408d320e17 /modules/gfpgan_model.py | |
parent | f741a98baccae100fcfb40c017b5c35c5cba1b0c (diff) | |
download | stable-diffusion-webui-gfx803-4b854806d98cf5ccd48e5cd99c172613da7937f0.tar.gz stable-diffusion-webui-gfx803-4b854806d98cf5ccd48e5cd99c172613da7937f0.tar.bz2 stable-diffusion-webui-gfx803-4b854806d98cf5ccd48e5cd99c172613da7937f0.zip |
F401 fixes for ruff
Diffstat (limited to 'modules/gfpgan_model.py')
-rw-r--r-- | modules/gfpgan_model.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gfpgan_model.py b/modules/gfpgan_model.py index fbe6215a..0131dea4 100644 --- a/modules/gfpgan_model.py +++ b/modules/gfpgan_model.py @@ -78,7 +78,7 @@ def setup_model(dirname): try:
from gfpgan import GFPGANer
- from facexlib import detection, parsing
+ from facexlib import detection, parsing # noqa: F401
global user_path
global have_gfpgan
global gfpgan_constructor
|