From 2672fc35e4e153fe6f5211aaecf7904ef85bb746 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Sun, 11 Jan 2026 13:41:13 -0600 Subject: [PATCH] Disable RUF067 for now --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 3ee0c95..0c093b3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -54,6 +54,7 @@ extend-ignore = [ "E402", # module-level import not at 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]