From 962e2aaa3f538010167f11ee6e8f0a1b6992ebbb Mon Sep 17 00:00:00 2001 From: Damian Shaw Date: Wed, 31 Jul 2024 21:28:56 -0400 Subject: [PATCH] Remove E203 from ignore: E203 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 9286dc8..51c6a78 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -96,7 +96,7 @@ line-length = 88 [tool.ruff.lint] select = ["C","E","F","W","B","RUF","PLE","PLW"] -ignore = ["E203", "PLW2901"] +ignore = ["PLW2901"] exclude = [ ".git", ".venv",