Closed jayvdb closed 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.
pycodestyle
pep8
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.
flake8.engine.pep8.stdin_get_value
Fixed in #4. Sorry for the noise.
The solution in #3 breaks with flake8 2.6.x , which uses
pycodestyle
instead ofpep8
, so pep8 may not be installed.