mirror of
https://github.com/shizand/statapp.git
synced 2025-04-03 16:13:44 +03:00
12 lines
244 B
Python
12 lines
244 B
Python
from PySide6.QtWidgets import QMainWindow
|
|
|
|
from statapp.ui.ui_main_window import Ui_MainWindow
|
|
|
|
|
|
class MainWindow(QMainWindow):
|
|
def __init__(self):
|
|
super().__init__()
|
|
self.ui = Ui_MainWindow()
|
|
self.ui.setupUi(self)
|
|
|