(self)
| 105 | self._http = httpx.Client(base_url=base_url, timeout=30) |
| 106 | |
| 107 | def close(self): |
| 108 | self._http.close() |
| 109 | |
| 110 | def _raw(self, method: str, path: str, body: Any = None) -> httpx.Response: |
| 111 | headers = {"Authorization": f"Bearer {self.api_key}"} |
no outgoing calls
no test coverage detected