31 class MicroPythonPage(ConfigurationPageBase, Ui_MicroPythonPage): |
31 class MicroPythonPage(ConfigurationPageBase, Ui_MicroPythonPage): |
32 """ |
32 """ |
33 Class implementing the MicroPython configuration page. |
33 Class implementing the MicroPython configuration page. |
34 """ |
34 """ |
35 |
35 |
36 def __init__(self, parent=None): |
36 def __init__(self): |
37 """ |
37 """ |
38 Constructor |
38 Constructor |
39 |
|
40 @param parent reference to the parent widget |
|
41 @type QWidget |
|
42 """ |
39 """ |
43 super().__init__() |
40 super().__init__() |
44 self.setupUi(self) |
41 self.setupUi(self) |
45 self.setObjectName("MicroPythonPage") |
42 self.setObjectName("MicroPythonPage") |
46 |
43 |