diff options
author | Max Audron <audron@cocaine.farm> | 2023-01-25 17:00:09 +0000 |
---|---|---|
committer | Max Audron <audron@cocaine.farm> | 2023-01-27 13:44:34 +0000 |
commit | 6b3981c0685cd1df750df4eb51823f1cfd70c6d5 (patch) | |
tree | 7f7ff92e3da25c2ee9645bbeac5c18df072c8334 /modules/codeformer_model.py | |
parent | 14c0884fd0948c478db165989cca7aaffc9a0504 (diff) | |
download | stable-diffusion-webui-gfx803-6b3981c0685cd1df750df4eb51823f1cfd70c6d5.tar.gz stable-diffusion-webui-gfx803-6b3981c0685cd1df750df4eb51823f1cfd70c6d5.tar.bz2 stable-diffusion-webui-gfx803-6b3981c0685cd1df750df4eb51823f1cfd70c6d5.zip |
clean up unused script_path imports
Diffstat (limited to 'modules/codeformer_model.py')
-rw-r--r-- | modules/codeformer_model.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/codeformer_model.py b/modules/codeformer_model.py index ab40d842..01fb7bd8 100644 --- a/modules/codeformer_model.py +++ b/modules/codeformer_model.py @@ -8,7 +8,7 @@ import torch import modules.face_restoration
import modules.shared
from modules import shared, devices, modelloader
-from modules.paths import script_path, models_path
+from modules.paths import models_path
# codeformer people made a choice to include modified basicsr library to their project which makes
# it utterly impossible to use it alongside with other libraries that also use basicsr, like GFPGAN.
|