Skip to content

Commit cb24977

Browse files
fix(docs): don't generate api docs for .DS_Store
1 parent 3423213 commit cb24977

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

libraries/website/tools/docs.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,14 @@
2424

2525

2626
print("Building API docs...")
27-
exclude_files = ["__init__.py", "README.md", "types.py", "cli.py", "about.py"]
27+
exclude_files = [
28+
".DS_Store",
29+
"__init__.py",
30+
"README.md",
31+
"types.py",
32+
"cli.py",
33+
"about.py",
34+
]
2835
include_folders = ["", "core"]
2936

3037

0 commit comments

Comments
 (0)