From 0d61133ace40a9932c56de2b594cc5d6127f3e55 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Sun, 11 Jan 2026 13:56:50 -0600 Subject: [PATCH] Disable RUF067 for now --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index eff3c5d..b78782f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -102,6 +102,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]