--- a/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleFixer.py Wed Nov 04 15:38:02 2015 +0100 +++ b/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleFixer.py Wed Nov 04 16:25:25 2015 +0100 @@ -2721,7 +2721,7 @@ @return number of unmatched open/close brackets (integer) """ count = 0 - for opening, closing in ['()', '[]', '{}']: + for opening, closing in ['()', '[]', '{}']: # __IGNORE_WARNING__ count += abs(line.count(opening) - line.count(closing)) return count