--- a/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Imports/ImportsChecker.py Sat Feb 22 18:04:39 2025 +0100 +++ b/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Imports/ImportsChecker.py Sat Feb 22 18:06:26 2025 +0100 @@ -84,9 +84,8 @@ @return flag indicating to ignore the given code @rtype bool """ - return ( - code in self.__ignore - or (code.startswith(self.__ignore) and not code.startswith(self.__select)) + return code in self.__ignore or ( + code.startswith(self.__ignore) and not code.startswith(self.__select) ) def __error(self, lineNumber, offset, code, *args):