(self, url, **kwargs)
| 9 | self._client = client |
| 10 | |
| 11 | def _get(self, url, **kwargs): |
| 12 | if getattr(self, 'API_BASE_URL', None): |
| 13 | kwargs['api_base_url'] = self.API_BASE_URL |
| 14 | return self._client.get(url, **kwargs) |
| 15 | |
| 16 | def _post(self, url, **kwargs): |
| 17 | if getattr(self, 'API_BASE_URL', None): |
no test coverage detected