From 0911d6f91d765541f8dc913ca5d16e698b776482 Mon Sep 17 00:00:00 2001 From: Santiago Soler Date: Thu, 11 Apr 2024 05:15:30 -0700 Subject: [PATCH] Ignore flake warning on io module (#445) Ignore the flake8-builtins `A005` error raised because the `verde.io` module is shadowing the builtin `io` module. --- setup.cfg | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.cfg b/setup.cfg index e47261fbf..b1aadeab6 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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 # -------------------------------