From 178074ae560641696c6029f1e860459ba514e6d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20MARQUET?= <72651575+BreizhHardware@users.noreply.github.com> Date: Thu, 10 Apr 2025 15:11:10 +0200 Subject: [PATCH] Fix(.gitignore) - Add __pycache__ directory to ignore list; ensure Python cache files are excluded from version control. --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 813169c..7af1023 100644 --- a/.gitignore +++ b/.gitignore @@ -15,4 +15,5 @@ map/infinite/* temp_audio.mp3 output.prof -**/*.pyc \ No newline at end of file +**/*.pyc +__pycache__/ \ No newline at end of file