From f0432da83c723cb5fa19416b3f03290cce4c8464 Mon Sep 17 00:00:00 2001 From: Gav Verma Date: Wed, 17 Dec 2025 16:31:10 -0800 Subject: [PATCH] Adds python bytecode files to .gitignore (#2) --- .gitignore | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitignore b/.gitignore index e43b0f9..03906ea 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,6 @@ +# macOS system files .DS_Store + +# Python bytecode files +__pycache__/ +*.pyc