mirror of
https://github.com/JDM170/SaveWizard_config_editor
synced 2025-12-10 05:57:23 +07:00
12
__init__.py
Normal file
12
__init__.py
Normal file
@@ -0,0 +1,12 @@
|
||||
#!/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())
|
||||
Reference in New Issue
Block a user