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

Method delete_labels

github/Issue.py:422–426  ·  view source on GitHub ↗

:calls: `DELETE /repos/{owner}/{repo}/issues/{issue_number}/labels `_

(self)

Source from the content-addressed store, hash-verified

420 return github.IssueComment.IssueComment(self._requester, headers, data, completed=True)
421
422 def delete_labels(self) -> None:
423 """
424 :calls: `DELETE /repos/{owner}/{repo}/issues/{issue_number}/labels <https://docs.github.com/en/rest/reference/issues#labels>`_
425 """
426 headers, data = self._requester.requestJsonAndCheck("DELETE", f"{self.url}/labels")
427
428 # breaking change: remove deprecated assignee
429 def edit(

Calls 1

requestJsonAndCheckMethod · 0.80

Tested by

no test coverage detected