From 94524976dd5abefcbdc38a2e2b50662c40b65759 Mon Sep 17 00:00:00 2001 From: Lasse Server Date: Tue, 14 Oct 2025 11:17:57 +0200 Subject: [PATCH] Refine .gitignore to improve clarity on ignored Python artifacts and cache files --- .gitignore | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 123f9a2..eec5c2d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,9 @@ -# Ignore pycache and other Python artifacts +# Ignore Python cache directories __pycache__/ + +# Ignore compiled Python files +*.pyc + +# Ignore other Python artifacts *.py[cod] *$py.class -*.pyc \ No newline at end of file