:calls: `PUT /gists/{gist_id}/star `_
(self)
| 295 | headers, data = self._requester.requestJsonAndCheck("DELETE", f"{self.url}/star") |
| 296 | |
| 297 | def set_starred(self) -> None: |
| 298 | """ |
| 299 | :calls: `PUT /gists/{gist_id}/star <https://docs.github.com/en/rest/reference/gists>`_ |
| 300 | """ |
| 301 | headers, data = self._requester.requestJsonAndCheck("PUT", f"{self.url}/star") |
| 302 | |
| 303 | def _useAttributes(self, attributes: dict[str, Any]) -> None: |
| 304 | if "comments" in attributes: # pragma no branch |
no test coverage detected