doc changes
This commit is contained in:
@@ -64,7 +64,11 @@ def tree(
|
||||
|
||||
def _print_object(obj, indent: str) -> None:
|
||||
"""
|
||||
Recursive helper to print doc objects.
|
||||
Recursive helper to print doc objects and their members to the console.
|
||||
|
||||
Args:
|
||||
obj: The DocObject to print.
|
||||
indent: The current line indentation string.
|
||||
"""
|
||||
click.echo(f"{indent}├── {obj.name}")
|
||||
for member in obj.get_all_members():
|
||||
@@ -262,7 +266,7 @@ def serve(mkdocs_yml: Path) -> None:
|
||||
|
||||
def main() -> None:
|
||||
"""
|
||||
CLI Entry point.
|
||||
CLI Entry point. Boots the click application.
|
||||
"""
|
||||
cli()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user