You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
444 B
Python
16 lines
444 B
Python
2 years ago
|
from PyQt5.QtWidgets import QApplication, QStyleFactory
|
||
|
from UI.MainWindow import MainWindow, CommonHelper
|
||
|
# from model.ClientModel.Client import Client
|
||
|
|
||
|
import time
|
||
|
import sys
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
app = QApplication(sys.argv)
|
||
|
# app.setStyle(QStyleFactory.create('Fusion'))
|
||
|
app.setStyleSheet(CommonHelper.readQss('static/main.qss'))
|
||
|
# Client.initDB()
|
||
|
window = MainWindow()
|
||
|
window.show()
|
||
|
sys.exit(app.exec_())
|