From 27ec0a8a228434219fe7bcd604b26b98eef48632 Mon Sep 17 00:00:00 2001 From: Jared Miller Date: Sat, 7 Feb 2026 09:53:18 -0500 Subject: [PATCH] Ignore pycache --- .gitignore | 1 + pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index c05e777..8d3b990 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ +__pycache__ repos diff --git a/pyproject.toml b/pyproject.toml index 0695296..59144e2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -31,7 +31,7 @@ select = ["E", "F", "I", "UP", "B", "SIM"] [tool.pyright] pythonVersion = "3.12" -exclude = ["repos"] +exclude = ["repos", ".venv"] [tool.pytest.ini_options] testpaths = ["tests"]