We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f4609e commit e5959abCopy full SHA for e5959ab
docs/scripts/generate_ref_files.py
@@ -31,7 +31,6 @@ def md_target(py_path: Path) -> Path:
31
rel = py_path.relative_to(SRC_ROOT).with_suffix(".md")
32
return DOCS_ROOT / rel
33
34
-
35
def pretty_title(last_segment: str) -> str:
36
"""
37
Convert a module/file segment like 'tool_context' to 'Tool Context'.
@@ -40,7 +39,6 @@ def pretty_title(last_segment: str) -> str:
40
39
cleaned = last_segment.replace("_", " ").replace("-", " ")
41
return capwords(cleaned)
42
43
44
# ---- Main ------------------------------------------------------------
45
46
@@ -75,4 +73,4 @@ def main() -> None:
75
73
76
74
77
if __name__ == "__main__":
78
- main()
+ main()
0 commit comments