emmett-framework / emmett

The web framework for inventors
BSD 3-Clause "New" or "Revised" License
1.06k stars 71 forks source link

Pep8 compliance #103

Closed vanadium23 closed 8 years ago

vanadium23 commented 8 years ago

So I've done basic integration for pyflake8 (#102) and found 400+ errors: some just skipped (e.g.: error for using lambda instead of def), but some was useful.

For example: F821 tells on py35 about unicode undefined world, but in py27 doesn't. May be revert it and fix those problem?

gi0baro commented 8 years ago

Ok, thank you! But I'm gonna ask you some changes in order to merge this:

Also, If you don't mind, rebase your branch into a single commit so we can have a better commit log :)

vanadium23 commented 8 years ago
query = 0
query = query == None // False

query = 0
query = query is None // Also False

Ok, I'll rebase after clearing this questions (:

gi0baro commented 8 years ago