Django - Async Django
Identify the error in this Django async view:
async def my_view(request):
result = slow_function()
return JsonResponse({'data': result})