Extend ignore dirs

This commit is contained in:
jpirnay 2024-10-21 22:56:18 +02:00
parent bb7dc5fcd4
commit 84d054133a

View file

@ -35,7 +35,7 @@ def read_source():
linecount = 0
filecount = 0
# debugit = False
ignoredirs = [".git", ".github", "venv"]
ignoredirs = [".git", ".github", "venv", ".venv"]
for root, dirs, files in os.walk(sourcedir):
mayignore = False
for s in ignoredirs: