-
Notifications
You must be signed in to change notification settings - Fork 39
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
Redundant continue
in ast.py
#177
Comments
@yegor256 can you approve this issue, please? |
@yegor256 can you check it, please? |
@ilnarkhasanov I agree, but why pylint doesn't complain? Let's try to add some other linter to the build first, which is stronger than pylint. |
@yegor256 I made a research and I did not find any static analyser that catches this issue. |
Merged
@yegor256 could you check the solution, please? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In this code snippet (ast.py, lines 133-135)
continue
instruction is redundant.Suggestion:
The text was updated successfully, but these errors were encountered: