From 7fe9e42264cabc9c62175837954bf54d84bfafb3 Mon Sep 17 00:00:00 2001 From: Kumi Date: Fri, 25 Aug 2023 08:04:57 +0200 Subject: [PATCH] Update .gitignore: Add "dist/" to ignore list The commit adds "dist/" to the .gitignore file, ensuring that these files will be ignored when committing changes. This helps to keep the repository clean and free of unnecessary files. --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index f20399b..7fededd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ .venv config.ini __pycache__ -*.pyc \ No newline at end of file +*.pyc +dist/ \ No newline at end of file