(username: str, ghnum: GhNumber)
| 157 | |
| 158 | |
| 159 | def branch_next(username: str, ghnum: GhNumber) -> GitCommitHash: |
| 160 | return branch(username, ghnum, "next") |
| 161 | |
| 162 | |
| 163 | RE_MENTION = re.compile(r"(?<!\w)@([a-z\d](?:[a-z\d]|-(?=[a-z\d])){0,38})", re.I) |
no test coverage detected