mirror of
https://github.com/shizand/statapp.git
synced 2025-04-01 23:23:45 +03:00
13 lines
276 B
Python
13 lines
276 B
Python
from PySide6.QtCore import Slot
|
|
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)
|
|
|