diff -r f5c57f8d17a4 -r 35b27af462ef src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Imports/translations.py --- a/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Imports/translations.py Sat May 20 19:50:13 2023 +0200 +++ b/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Imports/translations.py Sun May 21 15:26:11 2023 +0200 @@ -22,21 +22,6 @@ "ImportsChecker", "packages from standard modules should not be imported locally", ), - "I201": QCoreApplication.translate( - "ImportsChecker", - "Import statements are in the wrong order. '{0}' should be before '{1}'", - ), - "I202": QCoreApplication.translate( - "ImportsChecker", "Imported names are in the wrong order. Should be '{0}'" - ), - "I203": QCoreApplication.translate( - "ImportsChecker", - "Import statements should be combined. '{0}' should be combined with '{1}'", - ), - "I204": QCoreApplication.translate( - "ImportsChecker", - "The names in __all__ are in the wrong order. The order should be '{0}'", - ), "I901": QCoreApplication.translate( "ImportsChecker", "unnecessary import alias - rewrite as '{0}'" ), @@ -48,10 +33,6 @@ } _importsMessagesSampleArgs = { - "I201": ["import bar", "import foo"], - "I202": ["bar, baz, foo"], - "I203": ["from foo import bar", "from foo import baz"], - "I204": ["bar, baz, foo"], "I901": ["from foo import bar"], "I902": ["foo"], }