diff -r dee6e106b4d3 -r 15e30f0c76a8 src/eric7/QScintilla/Lexers/Lexer.py --- a/src/eric7/QScintilla/Lexers/Lexer.py Mon Feb 24 15:11:18 2025 +0100 +++ b/src/eric7/QScintilla/Lexers/Lexer.py Mon Feb 24 15:43:49 2025 +0100 @@ -192,7 +192,7 @@ """ return [] - def isCommentStyle(self, style): # noqa: U100 + def isCommentStyle(self, style): # noqa: U-100 """ Public method to check, if a style is a comment style. @@ -203,7 +203,7 @@ """ return True - def isStringStyle(self, style): # noqa: U100 + def isStringStyle(self, style): # noqa: U-100 """ Public method to check, if a style is a string style. @@ -247,7 +247,7 @@ else: return self.keywordSetDescriptions[kwSet - 1] - def defaultKeywords(self, kwSet): # noqa: U100 + def defaultKeywords(self, kwSet): # noqa: U-100 """ Public method to get the default keywords. @@ -256,7 +256,7 @@ @return space separated list of keywords @rtype str or None """ - return None # __IGNORE_WARNING_M831__ + return None # __IGNORE_WARNING_M-831__ def maximumKeywordSet(self): """