Is there an utility that could be run to reformat and fix simple code convention issues in Python?
Let's say that you end-up with a big project that didn't followed PEP8 quite well and you want to fix it.
I am looking for simple fixes like:
a = a + 1=>a += 1if (a):=>if a:- spacing between parameters
asupports augmented arithmetic assignment? – ekhumoro Oct 14 '11 at 18:40