Felix

Results 1 comments of Felix

Same here. As a workaround you can launch eel in a thread ``` import threading import eel def start_gui(): eel.init ('gui') eel.start ('index.html') gui_thread = threading.Thread (target=start_gui) gui_thread.daemon = True...