diff -r 385f60c94548 -r 7c09585bd960 eric6/QScintilla/DocstringGenerator/PyDocstringGenerator.py --- a/eric6/QScintilla/DocstringGenerator/PyDocstringGenerator.py Sat Apr 10 18:31:17 2021 +0200 +++ b/eric6/QScintilla/DocstringGenerator/PyDocstringGenerator.py Sat Apr 10 18:38:27 2021 +0200 @@ -26,7 +26,7 @@ @param editor reference to the editor widget @type Editor """ - super(PyDocstringGenerator, self).__init__(editor) + super().__init__(editor) self.__quote3 = '"""' self.__quote3Alternate = "'''" @@ -467,7 +467,7 @@ """ Constructor """ - super(PyFunctionInfo, self).__init__() + super().__init__() def __isCharInPairs(self, posChar, pairs): """