:calls: `GET /gists/{gist_id} `_
(self, id: str)
| 537 | return github.ProjectColumn.ProjectColumn(self.__requester, headers, data) |
| 538 | |
| 539 | def get_gist(self, id: str) -> Gist: |
| 540 | """ |
| 541 | :calls: `GET /gists/{gist_id} <https://docs.github.com/en/rest/reference/gists>`_ |
| 542 | """ |
| 543 | assert isinstance(id, str), id |
| 544 | url = f"/gists/{id}" |
| 545 | return github.Gist.Gist(self.__requester, url=url) |
| 546 | |
| 547 | def get_gists(self, since: Opt[datetime] = NotSet) -> PaginatedList[Gist]: |
| 548 | """ |
no outgoing calls
no test coverage detected