-
Notifications
You must be signed in to change notification settings - Fork 37.7k
Remove redundant semicolons in Python code #9607
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
Remove redundant semicolons in Python code #9607
Conversation
@@ -128,7 +128,7 @@ def main(): | |||
line_count = int(match.group(3)) | |||
if line_count == 0: | |||
continue | |||
end_line = start_line + line_count - 1; | |||
end_line = start_line + line_count - 1 |
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.
Just a note that this exists upstream. Not against removing it here, though.
utACK 5cdf106 |
utACK 5cdf106 |
Please, do not open a ton of pull requests to do minor style stuff changes for the test scripts. If those are necessary at all I'd prefer to see them combined over time (there's no hurry for these). |
@laanwj OK, understood! Thanks for clarifying :-) |
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.
utACK 5cdf106
5cdf106 Remove redundant semicolons in Python code (practicalswift)
5cdf106 Remove redundant semicolons in Python code (practicalswift)
5cdf106 Remove redundant semicolons in Python code (practicalswift)
5cdf106 Remove redundant semicolons in Python code (practicalswift)
No description provided.