:calls: `GET /gists/{gist_id}/comments `_
(self)
| 271 | return github.GistComment.GistComment(self._requester, url=url) |
| 272 | |
| 273 | def get_comments(self) -> PaginatedList[GistComment]: |
| 274 | """ |
| 275 | :calls: `GET /gists/{gist_id}/comments <https://docs.github.com/en/rest/reference/gists#comments>`_ |
| 276 | """ |
| 277 | return PaginatedList( |
| 278 | github.GistComment.GistComment, |
| 279 | self._requester, |
| 280 | f"{self.url}/comments", |
| 281 | None, |
| 282 | ) |
| 283 | |
| 284 | def is_starred(self) -> bool: |
| 285 | """ |
no test coverage detected