diff -r fb0ef164f536 -r 698ae46f40a4 eric6/Plugins/CheckerPlugins/CodeStyleChecker/Complexity/translations.py --- a/eric6/Plugins/CheckerPlugins/CodeStyleChecker/Complexity/translations.py Fri Apr 02 11:59:41 2021 +0200 +++ b/eric6/Plugins/CheckerPlugins/CodeStyleChecker/Complexity/translations.py Sat May 01 14:27:20 2021 +0200 @@ -19,13 +19,10 @@ "C112": QCoreApplication.translate( "ComplexityChecker", "overall source code line complexity is too high ({0})"), - "C901": QCoreApplication.translate( - "ComplexityChecker", "{0}: {1}"), } _complexityMessagesSampleArgs = { "C101": ["foo.bar", "42"], "C111": [42], "C112": [12.0], - "C901": ["SyntaxError", "Invalid Syntax"], }