diff -r b00c1c6cc312 -r 8232e8e4eeef eric6/Plugins/CheckerPlugins/CodeStyleChecker/Annotations/AnnotationsChecker.py --- a/eric6/Plugins/CheckerPlugins/CodeStyleChecker/Annotations/AnnotationsChecker.py Sat Apr 17 12:37:41 2021 +0200 +++ b/eric6/Plugins/CheckerPlugins/CodeStyleChecker/Annotations/AnnotationsChecker.py Sat Apr 17 12:42:28 2021 +0200 @@ -403,7 +403,8 @@ Private method to check for function annotation coverage. """ minAnnotationsCoverage = self.__args.get( - "MinimumCoverage", AnnotationsCheckerDefaultArgs["MinimumCoverage"]) + "MinimumCoverage", + AnnotationsCheckerDefaultArgs["MinimumCoverage"]) if minAnnotationsCoverage == 0: # 0 means it is switched off return @@ -458,7 +459,8 @@ Private method to check the type annotation complexity. """ maxAnnotationComplexity = self.__args.get( - "MaximumComplexity", AnnotationsCheckerDefaultArgs["MaximumComplexity"]) + "MaximumComplexity", + AnnotationsCheckerDefaultArgs["MaximumComplexity"]) # TODO: include 'MaximumLength' in CodeStyleCheckerDialog maxAnnotationLength = self.__args.get( "MaximumLength", AnnotationsCheckerDefaultArgs["MaximumLength"])