From 9f7ab331a793168974b41aa5090fbc7e2e3dfab3 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Sun, 11 Jan 2026 14:07:24 -0600 Subject: [PATCH] Disable RUF067 for now --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 8317f6c..f3fdf0c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -69,6 +69,7 @@ extend-ignore = [ "E402", # module level import not at the top of file "UP031", # use f-strings instead of % "UP032", # use f-strings instead of .format + "RUF067", # no code in __init__ *shrug* ] [tool.ruff.lint.flake8-quotes]