(username: str, ghnum: GhNumber)
| 262 | |
| 263 | |
| 264 | def all_branches(username: str, ghnum: GhNumber) -> Tuple[str, str, str]: |
| 265 | return ( |
| 266 | branch_base(username, ghnum), |
| 267 | branch_head(username, ghnum), |
| 268 | branch_orig(username, ghnum), |
| 269 | ) |
| 270 | |
| 271 | |
| 272 | def push_spec(commit: GitCommitHash, branch: str) -> str: |
nothing calls this directly
no test coverage detected