Skip to content

Commit

Permalink
Ignore flake warning on io module (#445)
Browse files Browse the repository at this point in the history
Ignore the flake8-builtins `A005` error raised because the `verde.io`
module is shadowing the builtin `io` module.
  • Loading branch information
santisoler authored Apr 11, 2024
1 parent 878f195 commit 0911d6f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@ exclude =
per-file-ignores =
# disable unused-imports errors on __init__.py
__init__.py: F401
# disable shadowing of builtin io module (this should be solved)
verde/io.py: A005

# Configure flake8-rst-docstrings
# -------------------------------
Expand Down

0 comments on commit 0911d6f

Please sign in to comment.