:calls: `DELETE /gists/{gist_id}/star `_
(self)
| 289 | return status == 204 |
| 290 | |
| 291 | def reset_starred(self) -> None: |
| 292 | """ |
| 293 | :calls: `DELETE /gists/{gist_id}/star <https://docs.github.com/en/rest/reference/gists>`_ |
| 294 | """ |
| 295 | headers, data = self._requester.requestJsonAndCheck("DELETE", f"{self.url}/star") |
| 296 | |
| 297 | def set_starred(self) -> None: |
| 298 | """ |
no test coverage detected