Full support for pep8 in code formatting
Brought to you by:
fabioz
Formatting the code does away with a lot of the problems reported for pep8 violations.
What is missing from the code-formatting preferences is an option to remove the space between a key and the colon in dictionary assignments.
It should be possible to have
a = {'x' : 1, 'y' : 2}
formatted into
a = {'x': 1, 'y': 2}
I think the preference can be called something like 'Remove extraneous whitespace from dictionary assignments'.
And maybe it should be on by default...
My 2 cents, Ronald portier