Django - Async Django
Examine this async Django view:
What is the issue with this code?
async def sample_view(request):
response = HttpResponse('Hello')
await response
return responseWhat is the issue with this code?
