(pr: int, comment_id: int, message: str)
| 190 | |
| 191 | |
| 192 | def reply(pr: int, comment_id: int, message: str) -> None: |
| 193 | repo = _repo_slug() |
| 194 | _run_gh( |
| 195 | [ |
| 196 | "api", |
| 197 | "--method", |
| 198 | "POST", |
| 199 | f"repos/{repo}/pulls/{pr}/comments/{comment_id}/replies", |
| 200 | "-f", |
| 201 | f"body={message}", |
| 202 | ] |
| 203 | ) |
| 204 | |
| 205 | |
| 206 | def check(pr: int) -> int: |
no test coverage detected