Exclude venv from flake8 linting (#168)

Issue: flake8 processes the venv dir.
Change: added `exclude = venv` to flake8 conf
pull/178/head
Leonid Ganeline 2023-08-23 17:14:23 -07:00 committed by GitHub
parent 43c80c1ba8
commit 84afc6fcce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -3,3 +3,5 @@ max-line-length = 120
ignore = E203,E501,W503
per-file-ignores =
__init__.py:F401
exclude =
venv