chore: ignore venv in git and build

This commit is contained in:
Seth Falco 2023-08-10 11:54:03 +02:00
parent a6841d5034
commit e7c40ad63f
No known key found for this signature in database
GPG Key ID: DE1C217EFF01FEC8
2 changed files with 3 additions and 0 deletions

2
.gitignore vendored
View File

@ -221,5 +221,7 @@ pip-log.txt
#Mr Developer
.mr.developer.cfg
venv
# Addon files
addon.xml

View File

@ -102,6 +102,7 @@ def folder_filter(folder_name: str) -> bool:
'.mypy_cache',
'.pytest_cache',
'__pycache__',
'venv',
]
for f in filters:
if f in folder_name.split(os.path.sep):