MetricsGrimoire / Bicho

Bicho is a command line based tool used to parse bug/issue tracking systems
http://metricsgrimoire.github.com/Bicho/
GNU General Public License v2.0
68 stars 30 forks source link

PEP8: whitespace fixes #97

Closed brainwane closed 10 years ago

brainwane commented 10 years ago

Per issue #96, I used the pep8 checker to find some extraneous or missing whitespace:

python /usr/local/lib/python2.7/dist-packages/pep8.py --select=E211 Bicho/

and found all the stuff to change. I then did

pep8ify -f whitespace_around_operator Bicho/ -w Bicho/ pep8ify -f whitespace_before_parameters Bicho/ -w Bicho/

to get whitespace in function calls and whitespace around operators more consistent with PEP 8, and I've visually inspected them to ensure that they're just style fixes with no effect on functionality.

This'll make our code more consistent, easier to read, and easier to refactor in the future.

canasdiaz commented 10 years ago

I didn't know about pep8ify, nice command :)