(self, parent, http_method)
| 18 | """ Wrap request method to facilitate queries. Supports requests signature. """ |
| 19 | |
| 20 | def __init__(self, parent, http_method): |
| 21 | self._parent = parent |
| 22 | self._method = getattr(parent._session, http_method) |
| 23 | |
| 24 | def __call__(self, endpoint, *args, **kwargs): # full signature passed here |
| 25 | response = self._method( |
nothing calls this directly
no outgoing calls
no test coverage detected