(target: Path)
| 200 | |
| 201 | |
| 202 | def git_submodule_paths(target: Path) -> tuple[Path, ...]: |
| 203 | return tuple(path for path, _ in git_submodule_entries(target)) |
| 204 | |
| 205 | |
| 206 | def require_clean_submodule_worktrees(target: Path) -> None: |
no test coverage detected