-
-
Notifications
You must be signed in to change notification settings - Fork 479
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
fixing most of pycodestyle E271 in pyx files #35312
Conversation
Codecov ReportPatch and project coverage have no change.
Additional details and impacted files@@ Coverage Diff @@
## develop #35312 +/- ##
========================================
Coverage 88.62% 88.62%
========================================
Files 2148 2148
Lines 398855 398855
========================================
+ Hits 353480 353481 +1
+ Misses 45375 45374 -1 see 29 files with indirect coverage changes Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report in Codecov by Sentry. |
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.
return (a*b).is_square( root = False ) | ||
is_sqr, sq_rt = (a*b).is_square( root = True ) | ||
return (a * b).is_square(root=False) | ||
is_sqr, sq_rt = ( a *b).is_square(root=True) |
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.
missing space (a * b)
Documentation preview for this PR is ready! 🎉 |
Merge conflict |
09b7f9d
to
0884b80
Compare
setting back to positive after easy rebasing |
📚 Description
This is fixing most of pycodestyle E271 in pyx files.
There remains a bunch in rings/polynomials.
📝 Checklist
⌛ Dependencies