MCPcopy Index your code
hub / github.com/PyGithub/PyGithub / reset_starred

Method reset_starred

github/Gist.py:291–295  ·  view source on GitHub ↗

:calls: `DELETE /gists/{gist_id}/star `_

(self)

Source from the content-addressed store, hash-verified

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 """

Callers 1

testStarringMethod · 0.80

Calls 1

requestJsonAndCheckMethod · 0.80

Tested by

no test coverage detected