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

Method unsubscribe_from_hub

github/Repository.py:4106–4114  ·  view source on GitHub ↗

:calls: `POST /hub `_ :param event: string :param callback: string :param secret: string :rtype: None

(self, event: str, callback: str)

Source from the content-addressed store, hash-verified

4104 return self._hub("subscribe", event, callback, secret)
4105
4106 def unsubscribe_from_hub(self, event: str, callback: str) -> None:
4107 """
4108 :calls: `POST /hub <https://docs.github.com/en/rest/reference/repos#pubsubhubbub>`_
4109 :param event: string
4110 :param callback: string
4111 :param secret: string
4112 :rtype: None
4113 """
4114 return self._hub("unsubscribe", event, callback, NotSet)
4115
4116 def create_check_suite(self, head_sha: str) -> CheckSuite:
4117 """

Callers 1

Calls 1

_hubMethod · 0.95

Tested by

no test coverage detected