(request, *args, **kwargs)
| 20 | if iscoroutinefunction(func): |
| 21 | |
| 22 | async def _view_wrapper(request, *args, **kwargs): |
| 23 | response = await func(request, *args, **kwargs) |
| 24 | patch_vary_headers(response, headers) |
| 25 | return response |
| 26 | |
| 27 | else: |
| 28 |
nothing calls this directly
no test coverage detected