Perform HTTP GET request with automatic error handling.
(self, *args, **kwargs)
| 211 | return self.session.request(*args, **kwargs) |
| 212 | |
| 213 | def get(self, *args, **kwargs) -> requests.Response: |
| 214 | """Perform HTTP GET request with automatic error handling.""" |
| 215 | return self.request("get", *args, **kwargs) |
| 216 | |
| 217 | def put(self, *args, **kwargs) -> requests.Response: |
| 218 | """Perform HTTP PUT request with automatic error handling.""" |
no test coverage detected