Add Python virtual environment and cache files to .gitignore

- Add .venv/ to ignore Python virtual environment directory
- Add __pycache__/ to ignore Python bytecode cache files
This commit is contained in:
Aareon Sullivan 2025-06-10 13:01:01 -05:00
parent 0c49d65c89
commit 6330e61bce

2
.gitignore vendored
View file

@ -13,3 +13,5 @@ tests/rnsconfig/storage
tests/rnsconfig/logfile*
*.data
*.result
.venv/
__pycache__