-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
max_line_length option ignored #21
Comments
My |
Hm. Its hard to say. The settings are parsed to flake = flake8_module.get_style_guide(
extend_ignore=ignore_codes,
max_line_length=max_line_length
) If I do: import flake8
flake8.__version__ I got version |
Ya, I'm on |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It looks like the
max_line_length
option forflake8
is being ignored in my setting. Can you see what I'm doing wrong?Note that if I include
--ignore E231
the warning message is suppressed, so that option seems to be working.Here's the raw code for my example:
The text was updated successfully, but these errors were encountered: