# -*- coding: utf-8 -*- from View.ASubWindow import ASubWindow class AboutWindow(ASubWindow): def __init__(self, title="About", parent=None): super(AboutWindow, self).__init__(name=title, ui="about", parent=parent) self.ui.setWindowTitle(title)