From 2a8bd7ff29beea1881dca7dd37485c7e8d8eff44 Mon Sep 17 00:00:00 2001 From: James McKinney <26463+jpmckinney@users.noreply.github.com> Date: Sat, 7 Sep 2024 02:59:02 -0400 Subject: [PATCH] chore: Add flake8-comprehensions rules --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 2d05500..d7b24e3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ line-length = 119 target-version = "py310" [tool.ruff.lint] -select = ["E", "F", "I", "W"] +select = ["E", "C4", "F", "I", "W"] [tool.pytest.ini_options] DJANGO_SETTINGS_MODULE = 'cove_project.settings'