10 lines
186 B
Python
10 lines
186 B
Python
from PyQt6 import uic
|
|
from PyQt6.QtWidgets import QMainWindow
|
|
|
|
|
|
class MainWindow(QMainWindow):
|
|
def __init__(self):
|
|
super().__init__()
|
|
|
|
uic.loadUi('ui/main.ui', self)
|