From e9915247598f0c7ce51892e0901ad3d44e538a0c Mon Sep 17 00:00:00 2001 From: Bradley Reynolds Date: Sun, 19 May 2024 16:03:37 -0500 Subject: [PATCH] Ignore RUF029 "async function doesn't use async features" All routes are async Signed-off-by: Bradley Reynolds --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 8182d4b..dc93859 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -40,6 +40,7 @@ select = [ ] ignore = [ "CPY001", # (Missing copyright notice at top of file) - No license + "RUF029", # (Function `` is declared `async`, but doesn't `await` or use `async` features.) - all routes are async ] [tool.ruff.lint.extend-per-file-ignores]