From dab4638b4779981affc9319c2fe83db0aab703bf Mon Sep 17 00:00:00 2001 From: Sienna Meridian Satterwhite Date: Mon, 2 Mar 2026 18:35:01 +0000 Subject: [PATCH] chore: ignore Python __pycache__ and *.pyc --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 7b6cae8..001a1b7 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,6 @@ secrets/local/ .DS_Store # kustomize helm chart download cache **/charts/ +# Python bytecode +__pycache__/ +*.pyc