-
Notifications
You must be signed in to change notification settings - Fork 24
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
A005 does not fire for packages #124
Comments
Nice find @kasium, it's an oversight on my end as I didn't test this scenario when submitting the original PR for the rule (see #121). It seems flake8's iterator interface currently only runs for modules (.py files) and does not run for directories. But, I think we can look for |
Thanks a lot! |
@asfaltboy @kasium |
Not sure if this intended, but A005 does not fire for packages (folders) shadowing stdlib modules. So,
socket/__init__.py
will not lead to an flake8 errorThe text was updated successfully, but these errors were encountered: