From 1ca0359eabd58dc5ff25eb5ea771b3de2d4f0e62 Mon Sep 17 00:00:00 2001 From: blessedcoolant Date: Fri, 25 Mar 2022 14:06:03 +1300 Subject: [PATCH] Fixed wrong push --- main.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/main.py b/main.py index ea815db..0ede27b 100644 --- a/main.py +++ b/main.py @@ -162,9 +162,7 @@ def main(): if args.gui: app_width, app_height = args.gui_size ui = FlaskUI(app, width=app_width, height=app_height) - import threading - thread = threading.Thread(target=ui.run) - # ui.run() + ui.run() else: app.run(host="127.0.0.1", port=args.port, debug=args.debug)