eric6/MicroPython/MicroPythonGraphWidget.py

changeset 8218
7c09585bd960
parent 8143
2c730d5fd177
child 8243
cc717c2ae956
equal deleted inserted replaced
8217:385f60c94548 8218:7c09585bd960
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

eric ide

mercurial