(import_path: str)
| 349 | |
| 350 | |
| 351 | def _slug(import_path: str) -> str: |
| 352 | return import_path.replace("@", "").replace("/", "-").replace("_", "-") |
| 353 | |
| 354 | |
| 355 | def _write_index(output_dir: Path, modules: list[ModuleDoc]) -> None: |
no outgoing calls
no test coverage detected