PyLint/PyLintConfigDialog.py

changeset 95
50eba81e4a9f
parent 94
45d226917534
--- a/PyLint/PyLintConfigDialog.py	Wed Dec 30 11:02:01 2020 +0100
+++ b/PyLint/PyLintConfigDialog.py	Sat Apr 24 17:01:22 2021 +0200
@@ -37,7 +37,7 @@
         @param parms parameters to set in the dialog
         @param version pylint version (string)
         """
-        super(PyLintConfigDialog, self).__init__(None)
+        super().__init__(None)
         self.setupUi(self)
         
         self.version = version
@@ -304,7 +304,7 @@
             [m.strip() for m in self.disabledMessagesEdit.text().split(',')])
         
         # call the accept slot of the base class
-        super(PyLintConfigDialog, self).accept()
+        super().accept()
 
     ###########################################################################
     ## Methods below are needed to generate a configuration file template

eric ide

mercurial