From 9698ae1bdd80c396b18d2dbc8ec5e0cc9cbd603f Mon Sep 17 00:00:00 2001 From: Tom Carrick Date: Tue, 27 Feb 2024 09:58:02 +0100 Subject: [PATCH] Ignore ISC001 Ruff rule --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 31f91bb..25cbbb2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -50,7 +50,7 @@ exclude = ["/tests", "requirements.txt", "runtests.py"] packages = ["django_rq_email_backend"] [tool.ruff] -ignore = ["S105"] +ignore = ["ISC001", "S105"] select = [ "ASYNC", "B",