Skip to content
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

Ignore F401 for __init__.py files #173

Merged
merged 2 commits into from
May 2, 2024
Merged

Commits on May 2, 2024

  1. Ignore F401 for __init__.py files

    These files routinely import other modules without immediately using
    them with the intention of making them available to the importing
    module. Moreover, they are rarely even supposed to be used within the
    same __init__.py file. Marking all of them 'noqa: F410' is redundant.
    mbr0wn committed May 2, 2024
    Configuration menu
    Copy the full SHA
    672e234 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    cb84fd2 View commit details
    Browse the repository at this point in the history