eric6/UI/PythonDisViewer.py

changeset 8218
7c09585bd960
parent 8143
2c730d5fd177
child 8227
349308e84eeb
diff -r 385f60c94548 -r 7c09585bd960 eric6/UI/PythonDisViewer.py
--- a/eric6/UI/PythonDisViewer.py	Sat Apr 10 18:31:17 2021 +0200
+++ b/eric6/UI/PythonDisViewer.py	Sat Apr 10 18:38:27 2021 +0200
@@ -58,7 +58,7 @@
         @param parent reference to the parent widget
         @type QWidget
         """
-        super(PythonDisViewer, self).__init__(parent)
+        super().__init__(parent)
         self.setupUi(self)
         
         self.setWindowTitle(self.tr("Disassembly"))
@@ -214,7 +214,7 @@
         """
         Public slot to show the DIS viewer.
         """
-        super(PythonDisViewer, self).show()
+        super().show()
         
         if (
             self.__mode == PythonDisViewerModes.SourceDisassemblyMode and
@@ -233,7 +233,7 @@
         """
         Public slot to hide the DIS viewer.
         """
-        super(PythonDisViewer, self).hide()
+        super().hide()
         
         if self.__editor:
             self.__editor.clearAllHighlights()

eric ide

mercurial