:calls: `GET /orgs/{org}/installation `
(self, org: str)
| 308 | ) |
| 309 | |
| 310 | def get_org_installation(self, org: str) -> Installation: |
| 311 | """ |
| 312 | :calls: `GET /orgs/{org}/installation <https://docs.github.com/en/rest/apps/apps#get-an-organization-installation-for-the-authenticated-app>` |
| 313 | """ |
| 314 | org = urllib.parse.quote(org, safe="") |
| 315 | return self._get_installed_app(url=f"/orgs/{org}/installation") |
| 316 | |
| 317 | def get_repo_installation(self, owner: str, repo: str) -> Installation: |
| 318 | """ |
no test coverage detected