:calls: `GET /app/installations/{installation_id} `
(self, installation_id: int)
| 330 | return self._get_installed_app(url=f"/users/{username}/installation") |
| 331 | |
| 332 | def get_app_installation(self, installation_id: int) -> Installation: |
| 333 | """ |
| 334 | :calls: `GET /app/installations/{installation_id} <https://docs.github.com/en/rest/apps/apps#get-an-installation-for-the-authenticated-app>` |
| 335 | """ |
| 336 | return self._get_installed_app(url=f"/app/installations/{installation_id}") |
| 337 | |
| 338 | def get_app(self) -> GithubApp: |
| 339 | """ |
no test coverage detected