The JsonResponse is already setting the content type of the response. Do not redefine the content type being sent.
Non-Compliant Code Examples
importjsonfromdjango.httpimportHttpResponseresponse_data={}response_data['result']='error'response_data['message']='Some error message'returnJsonResponse(response_data,content_type="application/json")# content-type is not necessary for JsonResponse
Compliant Code Examples
importjsonfromdjango.httpimportHttpResponseresponse_data={}response_data['result']='error'response_data['message']='Some error message'returnJsonResponse(response_data)# content-type is not necessary for JsonResponse
Seamless integrations. Try Datadog Code Security
Datadog Code Security
Try this rule and analyze your code with Datadog Code Security
How to use this rule
1
2
rulesets:- python-django # Rules to enforce Python django.
Create a static-analysis.datadog.yml with the content above at the root of your repository
Use our free IDE Plugins or add Code Security scans to your CI pipelines