From fd4c979dae5750fe052cb38b490e473e888bfa70 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 11 May 2026 08:17:57 +0000 Subject: [PATCH] Add .gitignore for Python bytecode cache --- .gitignore | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..01ecee4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +# Python bytecode cache. Generated by py_compile / import of +# scripts/sweep_poll.py during local validation; never part of the +# docs assembly. +__pycache__/ +*.pyc