-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
Update flake8 to 3.7.6 #6282
Update flake8 to 3.7.6 #6282
Conversation
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.
LGTM, barring 2 small changes that should be in a separate commit.
@@ -227,7 +227,7 @@ def _get_html_page(link, session=None): | |||
|
|||
try: | |||
resp = _get_html_response(url, session=session) | |||
except _NotHTTP as exc: | |||
except _NotHTTP: |
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.
Can you move this into a separate commit from removing #noqa?
from typing import ( # noqa: F401 | ||
List, Union | ||
) | ||
from typing import List |
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.
I'd be fine with keeping Union here in this commit, and removing it the next commit.
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.
There's a few places other places too which remove not-used imports, it'd be nice if all of those changes could be moved into a separate commit.
8b569fb
to
c4dfdbe
Compare
Done. (force-push, so explicit notification) |
Gee. Thanks for the quick turn around! |
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
@pradyunsg
Sorry, I messed up history in the original #6227, here is a new one, with the same changes, but
flake8
updated to very latest version.