diff -r 2cc7e3629784 -r 5a6ae3be31e6 Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleFixer.py --- a/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleFixer.py Mon Mar 12 19:57:16 2018 +0100 +++ b/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleFixer.py Tue Mar 13 14:54:46 2018 +0100 @@ -1238,7 +1238,7 @@ tokens = '<>*/=^&|%!+-' pos2 = pos token_delimiter = len(tokens) - for i in range(3): + for _ in range(3): if pos2 < len(text) and text[pos2] in tokens[:token_delimiter]: pos2 += 1 # only the first five could be repeated