Skip to content

Commit 9487ff9

Browse files
authored
ignore venv (#527)
1 parent b10910f commit 9487ff9

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

scripts/generate_llms.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,10 @@ def get_all_markdown_files(directory):
4040
if 'node_modules' in root.split(os.sep):
4141
continue
4242

43+
# Skip 'venv' directory
44+
if 'venv' in root.split(os.sep):
45+
continue
46+
4347
for file in files:
4448
if file.endswith(('.md', '.mdx')):
4549
results.append(os.path.join(root, file))

0 commit comments

Comments
 (0)