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

Method get_release_asset

github/Repository.py:4172–4175  ·  view source on GitHub ↗
(self, id: int)

Source from the content-addressed store, hash-verified

4170 headers, output = self._requester.requestMultipartAndCheck("POST", "/hub", input=post_parameters)
4171
4172 def get_release_asset(self, id: int) -> GitReleaseAsset:
4173 assert isinstance(id, int), id
4174 url = f"{self.url}/releases/assets/{id}"
4175 return github.GitReleaseAsset.GitReleaseAsset(self._requester, url=url)
4176
4177 def create_check_run(
4178 self,

Callers 2

testLazyAttributesMethod · 0.80
testGetAssetsMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected