From eadabe9072efc574510473b954f31479c184439a Mon Sep 17 00:00:00 2001 From: Carl Oscar Aaro Date: Tue, 15 Aug 2023 20:14:10 +0200 Subject: [PATCH] added E221 to flake8 ignore --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 3c0edda..b205d87 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -104,7 +104,7 @@ warn_return_any = true warn_unreachable = true [tool.flake8] -ignore = ["E203", "E501", "W503", "E231"] +ignore = ["E203", "E501", "W503", "E231", "E221"] exclude = ["utcnow.egg-info", ".git", ".mypy_cache", ".pytest_cache", ".venv", ".vscode", "__pycache__", "build", "dist", "tmp"] [tool.coverage.run]