mirror of
https://github.com/JDM170/SaveWizard_config_editor
synced 2025-12-10 05:57:23 +07:00
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())
|