From 619d44283a599bb911dad4734a7f3e1bca74965f Mon Sep 17 00:00:00 2001 From: Arjun Patel Date: Thu, 3 Sep 2026 11:43:32 -0500 Subject: [PATCH] Ignore Python bytecode Matches the rule the Claude Code plugin repo already has. Co-Authored-By: Claude Opus 5 (1M context) --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 4080f16..87c0bc4 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,10 @@ node_modules/ .DS_Store Thumbs.db +# Python bytecode +__pycache__/ +*.pyc + # Environment .env .env.local