falconry / python-mimeparse

Basic functions for handling Internet media types in Python.
MIT License
19 stars 11 forks source link

flake8 tweaks #27

Closed scop closed 8 years ago

wojcikstefan commented 8 years ago

Thank you @scop, this looks good! However, in order to avoid regressions, it would be nice if things like this were caught automatically. We're already running pep8 as part of our test suite, so it probably just needs some configuration changes (http://pep8.readthedocs.io/en/release-1.7.x/intro.html#configuration). Would you like to give it a shot?

scop commented 8 years ago

pep8 is obsoleted by pycodestyle, and flake8 takes care of pycodestyle and pyflakes. So I've combined the test envs into one in these new commits, plus added flake8-import-order to check the order of imports.

wojcikstefan commented 8 years ago

Looks great, thank you!