From 9d25954448bd7d54c71225a9dedea1ec7ad54cac Mon Sep 17 00:00:00 2001 From: Kumi Date: Tue, 16 Jul 2024 09:59:11 +0200 Subject: [PATCH] chore: update .gitignore to include /dist/ directory Added the /dist/ directory to .gitignore to prevent distribution artifacts from being tracked in the repository. This helps in keeping the repository clean and reduces unnecessary clutter in version control. --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 22ebee5..738528c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ venv/ .venv/ __pycache__/ -*.pyc \ No newline at end of file +*.pyc +/dist/ \ No newline at end of file