DOC: Add DEVELOP documentation on use of pyflakes

pull/652/head
Steven Hiscocks 2014-03-16 22:26:10 +00:00
parent b83550ad0b
commit fe3df0e523
1 changed files with 9 additions and 0 deletions

View File

@ -104,6 +104,15 @@ older versions on python. For all other uses of "pragma: no cover" or
"pragma: no branch" document the reason why its not covered. "I haven't written
a test case" isn't a sufficient reason.
pyflakes
--------
pyflakes can be used to find unused imports, and unused, undefined and
redefined variables. pyflakes should be run in any python code, including
python based actions::
pyflakes bin/ config/ fail2ban/
Documentation
-------------