-
-
Notifications
You must be signed in to change notification settings - Fork 46.5k
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
Misc fixes across multiple algorithms #6912
Conversation
Hi, thanks for the PR. Can you check if there any similar bugs elsewhere? If none, I'll merge this. |
No, not bugs like this (at least not that I am aware of), but I have found a ton of other misc issues (more than 65, according to my linter) which I have fixed locally, and I am currently debating on how I should PR them, since they are spread across a ton of files |
@dhruvmanila I sent you a DM on Discord regarding those other issues - for now I would say you can merge this |
What kind of issues and which linter are you talking about? I think you can just include all of them in this PR under misc fixes. |
Everything from changing list(filter()) to list comprehension to fixing a zero division (#6916).
Snyk code quality.
Sure, I could, if you want me to. Are you sure you don't actually want to see the changes first? |
I'll be looking at them once you commit in this PR :) If it's possible to visit some public URL to go through everything synk captured, that would be helpful as well. |
I don't think so, sadly - I think Snyk code quality is only available with Snyk's IDE plugins
Okay then, I'll commit my changes when I get home - that should be in about 4 - 4.5 hours (since the changes are saved on my computer at home and not my laptop) |
@dhruvmanila told me to commit these here so here we go
for more information, see https://pre-commit.ci
Uh oh, some checks failed, I thought I ran all the tests and formatting and stuff yesterday? I'll look into it in a bit. |
Okay, so: |
@dhruvmanila told me to commit these here so here we go Fixes TheAlgorithms#6916 among other issues
for more information, see https://pre-commit.ci
__name__ == "main"
typo
Welp, guess I am solving everyone else's issues. I'll do it when I get home. |
Requested by @dhruvmanila
for more information, see https://pre-commit.ci
Also, please don't |
Oh sorry, I thought it was okay because someone did the same to me before |
No problem! :) Please check the CI failures, after that we can merge. |
|
Merge conflicts should be resolved now! |
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.
Thanks! 🎉
Describe your change:
This change fixes a typo where
__name__ == "__main__"
was accidentally written as__name__ == "main"
.Checklist:
Fixes: #{$ISSUE_NO}
.