From 3e8c23ff489cf9d7f7a8ed34bd2b32506c78b43e Mon Sep 17 00:00:00 2001 From: zyberzebra Date: Fri, 3 May 2024 21:54:08 +0200 Subject: [PATCH] Add .gitignore file This commit introduces a .gitignore file to the project. The file is configured to ignore .idea, __pycache__, and venv directories, ensuring that these directories are not tracked by Git. --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..07da734 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +.idea/ +__pycache__/ +venv/