From 6c325acf41b5ad567854f9740acab45e39aeafa8 Mon Sep 17 00:00:00 2001 From: Andres Morales Esquivel Date: Tue, 30 Sep 2025 15:41:20 -0600 Subject: [PATCH] Disable ASYNC240 --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 8720d928..d61eeab2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -239,6 +239,7 @@ ignore = [ "PERF203", # Needs restructuring of errors, we should bail-out on first error "C901", # needs refactoring to remove cyclomatic complexity "B008", # Needs to restructure our cli params with Typer into constants + "ASYNC240", ] [tool.ruff.lint.per-file-ignores]