--- a/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Naming/translations.py Wed Jul 13 11:16:20 2022 +0200 +++ b/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Naming/translations.py Wed Jul 13 14:55:47 2022 +0200 @@ -13,46 +13,46 @@ _namingStyleMessages = { "N801": QCoreApplication.translate( - "NamingStyleChecker", - "class names should use CapWords convention"), + "NamingStyleChecker", "class names should use CapWords convention" + ), "N802": QCoreApplication.translate( - "NamingStyleChecker", - "function name should be lowercase"), + "NamingStyleChecker", "function name should be lowercase" + ), "N803": QCoreApplication.translate( - "NamingStyleChecker", - "argument name should be lowercase"), + "NamingStyleChecker", "argument name should be lowercase" + ), "N804": QCoreApplication.translate( - "NamingStyleChecker", - "first argument of a class method should be named 'cls'"), + "NamingStyleChecker", "first argument of a class method should be named 'cls'" + ), "N805": QCoreApplication.translate( - "NamingStyleChecker", - "first argument of a method should be named 'self'"), + "NamingStyleChecker", "first argument of a method should be named 'self'" + ), "N806": QCoreApplication.translate( "NamingStyleChecker", - "first argument of a static method should not be named" - " 'self' or 'cls"), + "first argument of a static method should not be named" " 'self' or 'cls", + ), "N807": QCoreApplication.translate( - "NamingStyleChecker", - "module names should be lowercase"), + "NamingStyleChecker", "module names should be lowercase" + ), "N808": QCoreApplication.translate( - "NamingStyleChecker", - "package names should be lowercase"), + "NamingStyleChecker", "package names should be lowercase" + ), "N811": QCoreApplication.translate( - "NamingStyleChecker", - "constant imported as non constant"), + "NamingStyleChecker", "constant imported as non constant" + ), "N812": QCoreApplication.translate( - "NamingStyleChecker", - "lowercase imported as non lowercase"), + "NamingStyleChecker", "lowercase imported as non lowercase" + ), "N813": QCoreApplication.translate( - "NamingStyleChecker", - "camelcase imported as lowercase"), + "NamingStyleChecker", "camelcase imported as lowercase" + ), "N814": QCoreApplication.translate( - "NamingStyleChecker", - "camelcase imported as constant"), + "NamingStyleChecker", "camelcase imported as constant" + ), "N821": QCoreApplication.translate( - "NamingStyleChecker", - "variable in function should be lowercase"), + "NamingStyleChecker", "variable in function should be lowercase" + ), "N831": QCoreApplication.translate( - "NamingStyleChecker", - "names 'l', 'O' and 'I' should be avoided"), + "NamingStyleChecker", "names 'l', 'O' and 'I' should be avoided" + ), }