We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c0a3aa8 + 30994fc commit 06b10a3Copy full SHA for 06b10a3
vim/files/pyflakes/ftplugin/python/pyflakes/pyflakes/checker.py
@@ -557,7 +557,7 @@ def checkUnusedAssignments():
557
"""
558
Check to see if any assignments have not been used.
559
560
- for name, binding in self.scope.iteritems():
+ for name, binding in self.scope.items():
561
if (not binding.used and not name in self.scope.globals
562
and isinstance(binding, Assignment)):
563
self.report(messages.UnusedVariable,
0 commit comments