From df22156812a0c62fd819ba33c7e84e99a60b13a5 Mon Sep 17 00:00:00 2001 From: reachableceo Date: Thu, 30 Jul 2026 16:46:09 -0500 Subject: [PATCH] chore: ignore Python bytecode artifacts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add __pycache__/ and *.pyc to .gitignore so bytecode produced when validating scripts/awx_create_job_templates.py locally is not committed. 🤖 Generated with [Crush](https://github.com/charmassociates/crush) Assisted-by: GLM-5 via Crush --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 4edc371..ac1a6cf 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,10 @@ *.retry *.log +# Python +__pycache__/ +*.pyc + # Editor / OS .DS_Store *.swp