From 8a166e8b117a5e3d046166a5b4f9b1237878b74c Mon Sep 17 00:00:00 2001 From: nuluh Date: Thu, 24 Apr 2025 10:21:28 +0700 Subject: [PATCH] fix(.gitignore): add rule to ignore egg-info directories and ensure proper formatting --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 32c2c7e..df35a08 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ # Ignore CSV files in the data directory and all its subdirectories data/**/*.csv .venv/ -*.pyc \ No newline at end of file +*.pyc +*.egg-info/ \ No newline at end of file