We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97481cb commit 2212299Copy full SHA for 2212299
1 file changed
docs/generate_code_reference_pages.py
@@ -16,13 +16,13 @@
16
# Skip files in excluded directories
17
if any(part in exclude_dirs for part in file_path.parts):
18
continue
19
-
+
20
# Ensure the file is actually within the base_path directory
21
try:
22
file_path.relative_to(base_path)
23
except ValueError:
24
25
26
module_path = file_path.with_suffix("")
27
doc_path = file_path.with_suffix(".md")
28
full_doc_path = Path("code-reference", doc_path)
0 commit comments