--- a/src/eric7/QScintilla/Lexers/LexerPygments.py Tue Apr 16 15:47:11 2024 +0200 +++ b/src/eric7/QScintilla/Lexers/LexerPygments.py Sat Apr 20 18:01:36 2024 +0200 @@ -573,11 +573,11 @@ else: return self.__lexer.name - def styleText(self, start, end): # noqa: U100 + def styleText(self, _start, end): """ Public method to perform the styling. - @param start position of first character to be styled + @param _start position of first character to be styled (unused) @type int @param end position of last character to be styled @type int @@ -643,11 +643,11 @@ PYGMENTS_STRONG, ] - def defaultKeywords(self, kwSet): # noqa: U100 + def defaultKeywords(self, _kwSet): """ Public method to get the default keywords. - @param kwSet number of the keyword set + @param _kwSet number of the keyword set (unused) @type int @return string giving the keywords or None @rtype str