--- a/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Logging/translations.py Thu Nov 30 16:39:46 2023 +0100 +++ b/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Logging/translations.py Thu Nov 30 17:48:55 2023 +0100 @@ -35,22 +35,23 @@ ), "L121": QCoreApplication.translate( "LoggingChecker", - "logging statement uses an extra field that clashes with a LogRecord field: {0}" + "logging statement uses an extra field that clashes with a LogRecord field:" + " {0}", ), "L130": QCoreApplication.translate( "LoggingChecker", - "logging statement uses exception in arguments" + "logging statement uses exception in arguments", ), "L131": QCoreApplication.translate( "LoggingChecker", - "logging: .exception(...) should be used instead of .error(..., exc_info=True)" + "logging: .exception(...) should be used instead of .error(..., exc_info=True)", ), "L132": QCoreApplication.translate( "LoggingChecker", - "logging statement has redundant exc_info" + "logging statement has redundant exc_info", ), } _loggingMessagesSampleArgs = { - "L121": ["pathname"] + "L121": ["pathname"], }