-
Notifications
You must be signed in to change notification settings - Fork 123
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
Fix #95: Resolve E741 errors #96
Conversation
The E741 (Ambiguous variable name) error has been enabled in flake8 3.5.0, which imports pycodestyle 2.1.0 [1]. Resolve the warnings. [1] PyCQA/pycodestyle#598 Signed-off-by: Stephen Finucane <stephen@that.guru>
@nicoddemus @RonnyPfannschmidt looks like py3.4's been acting up in CI. |
@tgoodlet nope, i recall this is a setuptools/pip interaction issue and i beleive 3.4 isn't eol yet |
I ran the build again and now it passes. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @stephenfin for the PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @stephenfin!
Fix #95: Resolve E741 errors
The E741 (Ambiguous variable name) error has been enabled in flake8 3.5.0, which imports pycodestyle 2.1.0 [1]. Resolve the warnings.
[1] PyCQA/pycodestyle#598