I have a large body of python code that needs to have a pep8-compliant style/format imposed on it. There are variants of pep8 that various rules (like this one by a coworker), but the hardest thing is to deal with splitting too long lines and formatting the modified code.
I've looked up the questions on this:
They are from 2009 and 2010. I am hoping that better tools have been developed since then.
I know about PythonTidy which is pretty good but makes lots of code worse, IMHO. Pylint detects formatting errors but does not correct them. Web services are not really relevant to my requirements because I want a tool that can be part of a build.
Does anyone have a recommendation that has not already been covered? Thanks.