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

PEP 8: remove whitespace between function name and arguments #96

Closed brainwane closed 10 years ago

brainwane commented 10 years ago

http://www.python.org/dev/peps/pep-0008/#whitespace-in-expressions-and-statements

Avoid extraneous whitespace in the following situations:... Immediately before the open parenthesis that starts the argument list of a function call:

Yes: spam(1) No: spam (1)

I see we're inconsistent in the Bicho codebase; I suggest we follow PEP 8.

brainwane commented 10 years ago

pull request merged; issue fixed. :)