Commit 30f2e356 authored by DepFA's avatar DepFA Committed by GitHub

add importlib.reload

parent afaa03c5
import os import os
import threading import threading
import time import time
import importlib
from modules import devices from modules import devices
from modules.paths import script_path from modules.paths import script_path
import signal import signal
...@@ -116,8 +116,10 @@ def webui(): ...@@ -116,8 +116,10 @@ def webui():
time.sleep(0.5) time.sleep(0.5)
break break
print('Reloading Scripts') print('Reloading Custom Scripts')
modules.scripts.reload_scripts(os.path.join(script_path, "scripts")) modules.scripts.reload_scripts(os.path.join(script_path, "scripts"))
print('Reloading modules: modules.ui')
importlib.reload(modules.ui)
print('Restarting Gradio') print('Restarting Gradio')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment