Remove print statement

This commit is contained in:
Rebecca Hsieh 2024-10-03 11:53:38 -07:00
parent 3ea9802ef1
commit 9650258038
No known key found for this signature in database

View file

@ -173,7 +173,6 @@ class ExportDataTypeRequests(View):
"""Returns a domain requests report for a given user on the request""" """Returns a domain requests report for a given user on the request"""
def get(self, request, *args, **kwargs): def get(self, request, *args, **kwargs):
print("ExportDataTypeRequests get method called")
response = HttpResponse(content_type="text/csv") response = HttpResponse(content_type="text/csv")
response["Content-Disposition"] = 'attachment; filename="domain-requests.csv"' response["Content-Disposition"] = 'attachment; filename="domain-requests.csv"'
csv_export.DomainRequestsDataType.exporting_dr_data_to_csv(response, request=request) csv_export.DomainRequestsDataType.exporting_dr_data_to_csv(response, request=request)