:calls: `POST /hub `_ :param event: string :param callback: string :param secret: string :rtype: None
(self, event: str, callback: str)
| 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 | """ |
no test coverage detected