-
-
Notifications
You must be signed in to change notification settings - Fork 601
some fixes for E114 #39564
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
some fixes for E114 #39564
Conversation
Documentation preview for this PR (built with commit 710acc3; changes) is ready! 🎉 |
@@ -1151,7 +1151,7 @@ def form_list_of_cusps(self): | |||
|
|||
full_domain = False # Says that we are not done yet! | |||
|
|||
v = [False for r in range(sP)] | |||
v = [False for _ in range(sP)] |
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.
isn't it better to use v = [False] * SP
?
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.
sagemathgh-39564: some fixes for E114 mostly fixing some E114 warnings about indentation of comments alos full pep8 cleanup in two of the modified files ### 📝 Checklist - [x] The title is concise and informative. - [x] The description explains in detail what this PR is about. URL: sagemath#39564 Reported by: Frédéric Chapoton Reviewer(s): David Coudert
sagemathgh-39564: some fixes for E114 mostly fixing some E114 warnings about indentation of comments alos full pep8 cleanup in two of the modified files ### 📝 Checklist - [x] The title is concise and informative. - [x] The description explains in detail what this PR is about. URL: sagemath#39564 Reported by: Frédéric Chapoton Reviewer(s): David Coudert
mostly fixing some E114 warnings about indentation of comments
alos full pep8 cleanup in two of the modified files
📝 Checklist