:calls: `GET /gists/{gist_id}/star `_
(self)
| 282 | ) |
| 283 | |
| 284 | def is_starred(self) -> bool: |
| 285 | """ |
| 286 | :calls: `GET /gists/{gist_id}/star <https://docs.github.com/en/rest/reference/gists>`_ |
| 287 | """ |
| 288 | status, headers, data = self._requester.requestJson("GET", f"{self.url}/star") |
| 289 | return status == 204 |
| 290 | |
| 291 | def reset_starred(self) -> None: |
| 292 | """ |
no test coverage detected