From bd64d40fd0c2dad4bd11659ed4c1a73779193925 Mon Sep 17 00:00:00 2001 From: Leonardo Uieda Date: Wed, 10 Apr 2024 08:39:08 -0300 Subject: [PATCH] Fix broken flake8 config --- .flake8 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.flake8 b/.flake8 index 880a416..384169c 100644 --- a/.flake8 +++ b/.flake8 @@ -18,9 +18,11 @@ exclude = .git, __pycache__, .ipynb_checkpoints, + doc/_build, per-file-ignores = # disable unused-imports errors on __init__.py - __init__.py: F401 + __init__.py: F401, + _io.py: A005, # Configure flake8-rst-docstrings # -------------------------------