--- a/eric6/MicroPython/EspDevices.py Sat Apr 10 18:31:17 2021 +0200 +++ b/eric6/MicroPython/EspDevices.py Sat Apr 10 18:38:27 2021 +0200 @@ -38,13 +38,13 @@ @param parent reference to the parent object @type QObject """ - super(EspDevice, self).__init__(microPythonWidget, deviceType, parent) + super().__init__(microPythonWidget, deviceType, parent) def setButtons(self): """ Public method to enable the supported action buttons. """ - super(EspDevice, self).setButtons() + super().setButtons() self.microPython.setActionButtons( run=True, repl=True, files=True, chart=HAS_QTCHART)