diff -r 2c9c2d67e4d8 -r adcffadf4962 Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleFixer.py --- a/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleFixer.py Thu Mar 16 19:30:15 2017 +0100 +++ b/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleFixer.py Thu Mar 16 19:32:33 2017 +0100 @@ -2722,7 +2722,8 @@ @return number of unmatched open/close brackets (integer) """ count = 0 - for opening, closing in ['()', '[]', '{}']: # __IGNORE_WARNING__ + for opening, closing in ['()', '[]', '{}']: + # __IGNORE_WARNING_M613__ count += abs(line.count(opening) - line.count(closing)) return count