fix: remove all __pycache__

This commit is contained in:
akhdanre 2025-02-07 20:11:13 +07:00
parent 735b5728cf
commit f9a4eb7bf2
18 changed files with 7 additions and 6 deletions

13
.gitignore vendored
View File

@ -1,8 +1,9 @@
# Ignore Python cache files in all directories # Ignore only __pycache__ inside the app directory
__pycache__/ app/**/__pycache__/
*/__pycache__/
*.pyc # Ignore compiled Python files inside app
*.pyo app/**/*.pyc
app/**/*.pyo
# Ignore environment files
.env .env