(self)
| 255 | """Records the response wrapper returned by `call_next` and passes it through.""" |
| 256 | |
| 257 | def __init__(self) -> None: |
| 258 | self.responses: list[Any] = [] |
| 259 | |
| 260 | @override |
| 261 | def handle(self, request: APIRequest, call_next: CallNext) -> Any: |
nothing calls this directly
no outgoing calls
no test coverage detected