Closed cclauss closed 5 years ago
Thank you for thinking of this and doing the work to set it up. I have combined this and your other two pull requests, plus further work to correct the remaining errors, into a single commit (56e5d33) and merged it.
This test is looking for undefined names these are often names that were removed from the language (xrange, unicode, basestring), or missing imports (see sys below), or missing self parameters in methods, or missing global declarations, or refactoring mistakes, or just plain typos. These are the kind of issues that a compiler would flag in a compiled language. These issues are not style related.
$ flake8 . --count --select=F821 --show-source --statistics