:calls: `GET /teams/{team_id}/repos `_
(self)
| 461 | ) |
| 462 | |
| 463 | def get_repos(self) -> PaginatedList[Repository]: |
| 464 | """ |
| 465 | :calls: `GET /teams/{team_id}/repos <https://docs.github.com/en/rest/reference/teams>`_ |
| 466 | """ |
| 467 | return github.PaginatedList.PaginatedList( |
| 468 | github.Repository.Repository, self._requester, f"{self.url}/repos", None |
| 469 | ) |
| 470 | |
| 471 | def invitations(self) -> PaginatedList[OrganizationInvitation]: |
| 472 | """ |
no outgoing calls
no test coverage detected