From 09ba8d5b0c410d9f5d9f10fee7cec8c1cd352829 Mon Sep 17 00:00:00 2001 From: SowinskiBraeden Date: Wed, 9 Nov 2022 09:47:38 -0800 Subject: [PATCH] add main file entry point --- main.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index b725181..10a92f2 100755 --- a/main.py +++ b/main.py @@ -95,4 +95,8 @@ def start( return err.__dict__ if err is not None else None -eel.start('index.html', size=(800, 1000)) +def main(): + eel.start('index.html', size=(800, 1000)) + +if __name__ == '__main__': + main()