mirror of
https://github.com/shizand/statapp.git
synced 2025-10-08 05:03:27 +03:00
16 lines
262 B
Python
16 lines
262 B
Python
import sys
|
|
from PySide2.QtWidgets import QApplication
|
|
|
|
from statapp.main_window import MainWindow
|
|
|
|
|
|
def main():
|
|
app = QApplication(sys.argv)
|
|
window = MainWindow()
|
|
window.show()
|
|
return app.exec_()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(main())
|