From a4540c1f41e1838c4ea7c7f5b95ef4e0875cc715 Mon Sep 17 00:00:00 2001 From: Kumi Date: Mon, 1 Jul 2024 14:53:33 +0200 Subject: [PATCH] chore: update .gitignore to include build directory Added the 'build/' directory to .gitignore to exclude build artifacts from version control. This change helps keep the repository clean by avoiding unnecessary files. No functional code changes were made. --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 25636a8..0d1505b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ venv/ *.pyc -__pycache__/ \ No newline at end of file +__pycache__/ +build/ \ No newline at end of file