(self, url, data, **kwargs)
| 152 | @add_json_content_type_to_headers |
| 153 | @add_basic_auth_creds_to_kwargs |
| 154 | def patch(self, url, data, **kwargs): |
| 155 | response = requests.patch(self.root + url, data, **kwargs) |
| 156 | response = self._response_hook(response=response) |
| 157 | return response |
| 158 | |
| 159 | @add_ssl_verify_to_kwargs |
| 160 | @add_auth_token_to_headers |