(args: list[str])
| 78 | |
| 79 | |
| 80 | def _git_run(args: list[str]) -> subprocess.CompletedProcess[str]: |
| 81 | return subprocess.run( |
| 82 | ["git", "-C", str(_REPO_ROOT), *args], |
| 83 | capture_output=True, |
| 84 | text=True, |
| 85 | check=False, |
| 86 | ) |
| 87 | |
| 88 | |
| 89 | @functools.lru_cache(maxsize=8) |
no outgoing calls
no test coverage detected