From 4f350a5c65a96ace59a24add68a2878c6763a294 Mon Sep 17 00:00:00 2001 From: Tim Jenness Date: Fri, 24 Jan 2025 15:51:04 -0700 Subject: [PATCH] Remove RUF100 check ruff 0.5 (rubin-env 9) does not understand metaclasses so we need to ignore N804. ruf 0.9 (rubin-env 10) fixes this. Temporarily have to support both though. --- pyproject.toml | 3 --- 1 file changed, 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ced769fd..27c94c40 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -165,9 +165,6 @@ select = [ "W", # pycodestyle "D", # pydocstyle ] -extend-select = [ - "RUF100", # Warn about unused noqa -] [tool.ruff.lint.pycodestyle] max-doc-length = 79