From 49180e320298169f15d1bb1b3c68724422550540 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Thu, 8 Jan 2026 14:14:16 -0600 Subject: [PATCH] Disable RUF067 for now --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 7a339879..70cd5f5f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -87,6 +87,9 @@ extend-ignore = [ "E402", # module-level import not at top of file "UP031", # use f-strings instead of % "UP032", # use f-strings instead of .format + + # FIXME: This is a longer discussion... + "RUF067", # __init__ should only contain reexports ] [tool.ruff.lint.flake8-quotes]