mirror of
https://github.com/JDM170/SaveWizard
synced 2025-04-20 22:30:42 +07:00
* Added .gitignore * Added build.spec for compiling project with PyInstaller * Updated font on all window elements * Recoded functions: ** purchased_garages ** add_garage ** add_all_garages * Typo fixes Signed-off-by: JDM170 <30170278+JDM170@users.noreply.github.com>
13 lines
263 B
Python
13 lines
263 B
Python
#!/usr/bin/python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from sys import argv, exit
|
|
from PyQt5.QtWidgets import QApplication
|
|
from main.script import MainWindow
|
|
|
|
if __name__ == '__main__':
|
|
app = QApplication(argv)
|
|
win = MainWindow()
|
|
win.show()
|
|
exit(app.exec())
|