(self, url, **kwargs)
| 160 | @add_auth_token_to_headers |
| 161 | @add_basic_auth_creds_to_kwargs |
| 162 | def delete(self, url, **kwargs): |
| 163 | response = requests.delete(self.root + url, **kwargs) |
| 164 | response = self._response_hook(response=response) |
| 165 | return response |
| 166 | |
| 167 | def _response_hook(self, response): |
| 168 | if self.debug: |
no test coverage detected