I'm trying to find a Python coding style enforcer (tool, not person!). Any recommendations?
--Steve
I only know pylint, but it is not an automatic code formatter, rather a marking tool.
pylint
pyflakes is like pylint but faster.
pyflakes
Don't forget PEP8, both the PEP8 style guide (http://www.python.org/dev/peps/pep-0008/) and the tool
Not a lint like tool, but keeps your style in line with the main python community.