Close the underlying HTTP session.
(self)
| 373 | self.base_url = base_url.rstrip('/') |
| 374 | |
| 375 | def close(self) -> None: |
| 376 | """Close the underlying HTTP session.""" |
| 377 | self._session.close() |
| 378 | |
| 379 | def get_job_status(self, job_id: str) -> Dict[str, Any]: |
| 380 | """ |