Hacker News new | ask | show | jobs
by ks2048 1058 days ago
I know it's a really minor point, but in a blog post about Python (rather than just one that is using Python), it kind of bothers me to see "non-Pythonic" code style,

    if(x > 0): ...
vs

    if x > 0: ...
but probably just OCD kicking in.