41 Constructor |
41 Constructor |
42 |
42 |
43 @param parent reference to the parent widget |
43 @param parent reference to the parent widget |
44 @type QWidget |
44 @type QWidget |
45 """ |
45 """ |
46 super(MicroPythonGraphWidget, self).__init__(parent) |
46 super().__init__(parent) |
47 |
47 |
48 self.__layout = QHBoxLayout() |
48 self.__layout = QHBoxLayout() |
49 self.__layout.setContentsMargins(2, 2, 2, 2) |
49 self.__layout.setContentsMargins(2, 2, 2, 2) |
50 self.setLayout(self.__layout) |
50 self.setLayout(self.__layout) |
51 |
51 |