diff --git a/launch.py b/launch.py index 197e656..a357b91 100644 --- a/launch.py +++ b/launch.py @@ -123,5 +123,5 @@ def start_webui(): import webui webui.webui() - -start_webui() +if __name__ == "__main__": + start_webui()