From 47165fcf97d89b891460e4b46f48c20aa269b12f Mon Sep 17 00:00:00 2001 From: Andreas Pelme Date: Thu, 25 Jul 2024 20:00:22 +0200 Subject: [PATCH] Avoid B904 in ruff lint. It is not useful. --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 40f4b01..f2fc1cd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -66,6 +66,9 @@ lint.select = [ "UP", # pyupgrade "TID", # flake8-tidy-imports ] +lint.ignore = [ + "B904", +] [tool.mypy] strict = true