--- a/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/translations.py Mon Feb 24 15:11:18 2025 +0100 +++ b/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/translations.py Mon Feb 24 15:43:49 2025 +0100 @@ -93,12 +93,16 @@ "E-201": QCoreApplication.translate("pycodestyle", "whitespace after '{0}'"), "E-202": QCoreApplication.translate("pycodestyle", "whitespace before '{0}'"), "E-203": QCoreApplication.translate("pycodestyle", "whitespace before '{0}'"), - "E-204": QCoreApplication.translate("pycodestyle", "whitespace after decorator '@'"), + "E-204": QCoreApplication.translate( + "pycodestyle", "whitespace after decorator '@'" + ), "E-211": QCoreApplication.translate("pycodestyle", "whitespace before '{0}'"), "E-221": QCoreApplication.translate( "pycodestyle", "multiple spaces before operator" ), - "E-222": QCoreApplication.translate("pycodestyle", "multiple spaces after operator"), + "E-222": QCoreApplication.translate( + "pycodestyle", "multiple spaces after operator" + ), "E-223": QCoreApplication.translate("pycodestyle", "tab before operator"), "E-224": QCoreApplication.translate("pycodestyle", "tab after operator"), "E-225": QCoreApplication.translate( @@ -113,7 +117,9 @@ "E-228": QCoreApplication.translate( "pycodestyle", "missing whitespace around modulo operator" ), - "E-231": QCoreApplication.translate("pycodestyle", "missing whitespace after '{0}'"), + "E-231": QCoreApplication.translate( + "pycodestyle", "missing whitespace after '{0}'" + ), "E-241": QCoreApplication.translate("pycodestyle", "multiple spaces after '{0}'"), "E-242": QCoreApplication.translate("pycodestyle", "tab after '{0}'"), "E-251": QCoreApplication.translate( @@ -135,7 +141,9 @@ "pycodestyle", "too many leading '#' for block comment" ), "E-271": QCoreApplication.translate("pycodestyle", "multiple spaces after keyword"), - "E-272": QCoreApplication.translate("pycodestyle", "multiple spaces before keyword"), + "E-272": QCoreApplication.translate( + "pycodestyle", "multiple spaces before keyword" + ), "E-273": QCoreApplication.translate("pycodestyle", "tab after keyword"), "E-274": QCoreApplication.translate("pycodestyle", "tab before keyword"), "E-275": QCoreApplication.translate( @@ -227,7 +235,9 @@ "W-191": QCoreApplication.translate("pycodestyle", "indentation contains tabs"), "W-291": QCoreApplication.translate("pycodestyle", "trailing whitespace"), "W-292": QCoreApplication.translate("pycodestyle", "no newline at end of file"), - "W-293": QCoreApplication.translate("pycodestyle", "blank line contains whitespace"), + "W-293": QCoreApplication.translate( + "pycodestyle", "blank line contains whitespace" + ), "W-391": QCoreApplication.translate("pycodestyle", "blank line at end of file"), "W-503": QCoreApplication.translate( "pycodestyle", "line break before binary operator" @@ -360,7 +370,7 @@ "FIX-E401": QCoreApplication.translate( "CodeStyleFixer", "Imports were put on separate lines." ), - "FIX-E501": QCoreApplication.translate( + "FIX-E-501": QCoreApplication.translate( "CodeStyleFixer", "Long lines have been shortened." ), "FIX-E502": QCoreApplication.translate(