(self, url, data, **kwargs)
| 143 | @add_json_content_type_to_headers |
| 144 | @add_basic_auth_creds_to_kwargs |
| 145 | def put(self, url, data, **kwargs): |
| 146 | response = requests.put(self.root + url, json.dumps(data), **kwargs) |
| 147 | response = self._response_hook(response=response) |
| 148 | return response |
| 149 | |
| 150 | @add_ssl_verify_to_kwargs |
| 151 | @add_auth_token_to_headers |
no test coverage detected