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

Method remove_required_pull_request_reviews

github/Branch.py:474–481  ·  view source on GitHub ↗

:calls: `DELETE /repos/{owner}/{repo}/branches/{branch}/protection/required_pull_request_reviews `_

(self)

Source from the content-addressed store, hash-verified

472 )
473
474 def remove_required_pull_request_reviews(self) -> None:
475 """
476 :calls: `DELETE /repos/{owner}/{repo}/branches/{branch}/protection/required_pull_request_reviews <https://docs.github.com/en/rest/reference/repos#branches>`_
477 """
478 headers, data = self._requester.requestJsonAndCheck(
479 "DELETE",
480 f"{self.protection_url}/required_pull_request_reviews",
481 )
482
483 def get_admin_enforcement(self) -> bool:
484 """

Calls 1

requestJsonAndCheckMethod · 0.80

Tested by

no test coverage detected