diff -r 2b768afcaee1 -r 49a0a9cb2505 src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Annotations/AnnotationsChecker.py --- a/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Annotations/AnnotationsChecker.py Thu Sep 15 10:09:53 2022 +0200 +++ b/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Annotations/AnnotationsChecker.py Thu Sep 15 11:00:36 2022 +0200 @@ -369,7 +369,7 @@ else: self.__error(arg.lineno - 1, arg.col_offset, errorCode) - @lru_cache() + @lru_cache() # __IGNORE_WARNING_M519__ def __returnErrorClassifier(self, isClassMethod, classDecoratorType, functionType): """ Private method to classify a return type annotation issue. @@ -400,7 +400,7 @@ else: return "A201" - @lru_cache() + @lru_cache() # __IGNORE_WARNING_M519__ def __argumentErrorClassifier( self, isClassMethod, isFirstArg, classDecoratorType, annotationType ):