From d6ab34bede9d609c5324e78498b4890d4d106c78 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Sun, 11 Jan 2026 14:02:35 -0600 Subject: [PATCH] Disable RUF067 for now --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 70c09d83..ffec10a6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -100,6 +100,7 @@ extend-ignore = [ "N818", # error suffix in exception names "UP031", # use f-strings instead of % format "UP032", # use f-strings instead of .format + "RUF067", # no code in __init__ *shrug* ] [tool.ruff.lint.flake8-quotes]