import os from PyQt5 import QtWidgets, uic from clusterview_ui import Ui_MainWindow class MainWindow(QtWidgets.QMainWindow, Ui_MainWindow): """ A wrapper class for handling creating a window based on the `clusterview_ui.py` code generated from `clusterview.ui`. """ def __init__(self, parent=None): super(MainWindow, self).__init__(parent) self.setupUi(self)