From 0596af433817d331af1b8e3cf39a47825c01cca1 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Sun, 11 Jan 2026 14:04:52 -0600 Subject: [PATCH] Disable RUF067 for now --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index fb3d8876..d2e33f05 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -43,6 +43,7 @@ extend-ignore = [ "B904", # raise within except: use from "RUF012", # ClassVar "SIM108", # ternary instead of if-then-else + "RUF067", # no code in __init__ *shrug* ] [tool.ruff.lint.flake8-quotes]