()
| 248 | |
| 249 | # Build handler call, wrapping with security decorators as required |
| 250 | async def call_handler() -> BaseResponse: |
| 251 | instance = handler_cls(app, lock) |
| 252 | return await instance.handle_request(request=request) |
| 253 | |
| 254 | handler_fn = call_handler |
| 255 | if handler_cls.requires_csrf(): |
nothing calls this directly
no test coverage detected