From d9b07f3d13869408eca4a3ef2230479870deabc5 Mon Sep 17 00:00:00 2001 From: ergosteur Date: Thu, 20 Aug 2026 14:38:41 -0400 Subject: [PATCH] chore: stop tracking compiled Python bytecode MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Two .pyc files under scripts/__pycache__ were committed at some point and have been churning ever since — merely importing gdl-sync.py to check a config rewrites them and dirties the tree, which is how they surfaced. .gitignore had no Python entries at all, only Node ones. The files stay on disk; this just untracks them. Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_01UXfdJu7QhSJLr47K7koTDF --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index f1137b5..284b4d7 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,5 @@ coverage/ !.env.example _sample-archives _gemini-plans +__pycache__/ +*.pyc