mirror of
https://github.com/283375/arcaea-offline-ocr-model.git
synced 2025-04-11 17:20:18 +00:00
15 lines
252 B
Python
15 lines
252 B
Python
import sys
|
|
|
|
from PySide6.QtWidgets import QApplication
|
|
|
|
from ui.mainWindow import MainWindow
|
|
|
|
if __name__ == "__main__":
|
|
app = QApplication(sys.argv)
|
|
|
|
app.setStyle("fusion")
|
|
|
|
window = MainWindow()
|
|
window.show()
|
|
sys.exit(app.exec())
|