(args: list[str], cwd: Path)
| 29 | |
| 30 | |
| 31 | def _git(args: list[str], cwd: Path) -> str: |
| 32 | return subprocess.check_output( |
| 33 | ["git", *args], cwd=str(cwd), text=True, encoding="utf-8", errors="replace" |
| 34 | ) |
| 35 | |
| 36 | |
| 37 | def _init_repo(root: Path) -> None: |
no outgoing calls
no test coverage detected