diff --git a/scripts/run_checks.py b/scripts/run_checks.py index e5a223d37..c03fc9aaa 100755 --- a/scripts/run_checks.py +++ b/scripts/run_checks.py @@ -134,7 +134,7 @@ def check_git(): gitst = gitst.decode('UTF-8').strip() for line in gitst.splitlines(): s, name = line.split(maxsplit=1) - if s == '??': + if s == '??' and name != '.venv': untracked.append(name) elif s == 'M': changed.append(name)