* Updated build.spec for PyInstaller build
* Some code and typo fixes

Signed-off-by: JDM170 <30170278+JDM170@users.noreply.github.com>
This commit is contained in:
2020-08-21 23:38:00 +07:00
parent 33ce4d1148
commit 34f38b5a59
13 changed files with 128 additions and 120 deletions

12
init_main_program.py Normal file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/python3
# -*- coding: utf-8 -*-
from sys import argv, exit
from PyQt5.QtWidgets import QApplication
from choice.script import ChoiceWindow
if __name__ == '__main__':
app = QApplication(argv)
win = ChoiceWindow()
win.show()
exit(app.exec())