-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
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
CLN: noqa removal #29574
CLN: noqa removal #29574
Conversation
LGTM, cc @WillAyd |
@@ -62,46 +62,46 @@ def coerce(request): | |||
# collect all objects to be tested for list-like-ness; use tuples of objects, | |||
# whether they are list-like or not (special casing for sets), and their ID | |||
ll_params = [ | |||
([1], True, "list"), # noqa: E241 | |||
([], True, "list-empty"), # noqa: E241 | |||
((1,), True, "tuple"), # noqa: E241 |
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.
@kaathi524 what's the reason this is not necessary any more?
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.
@jorisvandenbossche Yeah. According to Issue #29607 , Need to remove those noqa.
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.
OK, thanks!
@kaathi524 thanks for the PR! |
xref #29216