repin flake8 and misc updates (#79)

* repin flake8, bump tox to >=4.0.0 as that's where whitelist was deprecated, misc updates
This commit is contained in:
Paul Robinson
2023-04-10 14:02:45 -06:00
committed by pacrob
parent 91d93efdd0
commit 68d37fa50f
5 changed files with 9 additions and 9 deletions

View File

@ -7,7 +7,7 @@ from pathlib import Path
def _find_files(project_root):
path_exclude_pattern = r"\.git($|\/)|venv|_build"
path_exclude_pattern = r"\.git($|\/)|venv|_build|\.tox"
file_exclude_pattern = r"fill_template_vars\.py|\.swp$"
filepaths = []
for dir_path, _dir_names, file_names in os.walk(project_root):