diff -r 2cc7e3629784 -r 5a6ae3be31e6 Plugins/CheckerPlugins/Tabnanny/Tabnanny.py --- a/Plugins/CheckerPlugins/Tabnanny/Tabnanny.py Mon Mar 12 19:57:16 2018 +0100 +++ b/Plugins/CheckerPlugins/Tabnanny/Tabnanny.py Tue Mar 13 14:54:46 2018 +0100 @@ -171,7 +171,7 @@ taskQueue.put(task) # Start worker processes - for i in range(NumberOfProcesses): + for _ in range(NumberOfProcesses): multiprocessing.Process(target=worker, args=(taskQueue, doneQueue))\ .start() @@ -201,7 +201,7 @@ taskQueue.put(argumentsList[i + initialTasks]) # Tell child processes to stop - for i in range(NumberOfProcesses): + for _ in range(NumberOfProcesses): taskQueue.put('STOP') @@ -475,7 +475,7 @@ indents = [Whitespace("")] check_equal = 0 - for (tokenType, token, start, end, line) in tokens: + for (tokenType, token, start, _end, line) in tokens: if tokenType == NEWLINE: # a program statement, or ENDMARKER, will eventually follow, # after some (possibly empty) run of tokens of the form