smarkets / flake8-strict

Flake8 plugin that checks Python code against a set of opinionated style rules
MIT License
10 stars 8 forks source link

broken by flake8 2.6.x #10

Closed jayvdb closed 8 years ago

jayvdb commented 8 years ago

The solution in #3 breaks with flake8 2.6.x , which uses pycodestyle instead of pep8, so pep8 may not be installed.

jayvdb commented 8 years ago

fwiw, the way I am working around this is to use flake8.engine.pep8.stdin_get_value , to be 100% sure of having the same method as flake8 is using.

jayvdb commented 8 years ago

Fixed in #4. Sorry for the noise.