Added simple config editor

Signed-off-by: JDM170 <30170278+JDM170@users.noreply.github.com>
This commit is contained in:
2020-08-22 10:26:50 +07:00
parent 34f38b5a59
commit 28a54d14f0
7 changed files with 294 additions and 3 deletions

12
init_config_editor.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 config_editor.script import EditorWindow
if __name__ == '__main__':
app = QApplication(argv)
win = EditorWindow()
win.show()
exit(app.exec())