reorder imports to fix the bug with k-diffusion on some version
This commit is contained in:
parent
2d3ea42a2d
commit
2a53280495
1 changed files with 3 additions and 2 deletions
5
webui.py
5
webui.py
|
@ -2,11 +2,12 @@ import os
|
|||
import threading
|
||||
import time
|
||||
import importlib
|
||||
from modules import devices, sd_samplers
|
||||
from modules.paths import script_path
|
||||
import signal
|
||||
import threading
|
||||
|
||||
from modules.paths import script_path
|
||||
|
||||
from modules import devices, sd_samplers
|
||||
import modules.codeformer_model as codeformer
|
||||
import modules.extras
|
||||
import modules.face_restoration
|
||||
|
|
Loading…
Reference in a new issue