eric6/MicroPython/RP2040Devices.py

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

eric ide

mercurial