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
__pycache__/
*/__pycache__/
*.pyc
*.pyo
# Ignore only __pycache__ inside the app directory
app/**/__pycache__/
# Ignore compiled Python files inside app
app/**/*.pyc
app/**/*.pyo
# Ignore environment files
.env