(self)
| 274 | """Parses the response inside the middleware before returning it.""" |
| 275 | |
| 276 | def __init__(self) -> None: |
| 277 | self.parsed: list[Any] = [] |
| 278 | |
| 279 | @override |
| 280 | def handle(self, request: APIRequest, call_next: CallNext) -> Any: |
nothing calls this directly
no outgoing calls
no test coverage detected