Get headers for the requests.
(self)
| 226 | return self.__requester |
| 227 | |
| 228 | def _get_headers(self) -> dict[str, str]: |
| 229 | """ |
| 230 | Get headers for the requests. |
| 231 | """ |
| 232 | return { |
| 233 | "Accept": Consts.mediaTypeIntegrationPreview, |
| 234 | } |
| 235 | |
| 236 | def _get_installed_app(self, url: str) -> Installation: |
| 237 | """ |
no outgoing calls
no test coverage detected