diff -r 385f60c94548 -r 7c09585bd960 eric6/MicroPython/CircuitPythonDevices.py --- a/eric6/MicroPython/CircuitPythonDevices.py Sat Apr 10 18:31:17 2021 +0200 +++ b/eric6/MicroPython/CircuitPythonDevices.py Sat Apr 10 18:38:27 2021 +0200 @@ -38,7 +38,7 @@ @param parent reference to the parent object @type QObject """ - super(CircuitPythonDevice, self).__init__( + super().__init__( microPythonWidget, deviceType, parent) self.__workspace = self.__findWorkspace() @@ -51,7 +51,7 @@ """ Public method to enable the supported action buttons. """ - super(CircuitPythonDevice, self).setButtons() + super().setButtons() self.microPython.setActionButtons( run=True, repl=True, files=True, chart=HAS_QTCHART) @@ -197,7 +197,7 @@ ) ) - return super(CircuitPythonDevice, self).getWorkspace() + return super().getWorkspace() def addDeviceMenuEntries(self, menu): """