fix: adding gitignore for pycache

This commit is contained in:
akhdanre 2025-02-07 20:00:55 +07:00
parent f38e63ee9c
commit 735b5728cf
1 changed files with 5 additions and 1 deletions

6
.gitignore vendored
View File

@ -1,4 +1,8 @@
.env # Ignore Python cache files in all directories
__pycache__/ __pycache__/
*/__pycache__/
*.pyc *.pyc
*.pyo *.pyo
# Ignore environment files
.env