Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleFixer.py

changeset 6188
5a6ae3be31e6
parent 6048
82ad8ec9548c
child 6264
04a671fa4adb
--- 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

eric ide

mercurial