12 |
12 |
13 class $CLASSNAME$($SUPERCLASS$, Ui_$FORMCLASS$): |
13 class $CLASSNAME$($SUPERCLASS$, Ui_$FORMCLASS$): |
14 """ |
14 """ |
15 Class documentation goes here. |
15 Class documentation goes here. |
16 """ |
16 """ |
|
17 |
17 def __init__(self, parent=None): |
18 def __init__(self, parent=None): |
18 """ |
19 """ |
19 Constructor |
20 Constructor |
20 |
21 |
21 @param parent reference to the parent widget (defaults to None) |
22 @param parent reference to the parent widget (defaults to None) |
22 @type QWidget (optional) |
23 @type QWidget (optional) |
23 """ |
24 """ |
24 super().__init__(parent) |
25 super().__init__(parent) |
25 self.setupUi(self) |
26 self.setupUi(self) |