From 69888ee07c7aa801fa719db95d5829e126a8d68d Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Sun, 23 Nov 2025 20:06:32 -0800 Subject: [PATCH] flake8 ignore .venv if it exists --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 5b4b479..3fec0c4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -76,6 +76,7 @@ build-backend = "setuptools.build_meta" max-line-length = 160 # Black compatibility, E203 whitespace before ':': extend-ignore = ["E203"] +exclude = [".venv"] [tool.setuptools.package-data] sqlite_utils = ["py.typed"]