fix flake8 standard problems

This commit is contained in:
Beichi-CHs
2021-11-18 12:56:16 +08:00
parent 3754fa2542
commit d4b3a42f94
6 changed files with 6 additions and 6 deletions

View File

@@ -151,7 +151,7 @@ class GenerateUserAPI(APIView):
raw_data = f.read()
os.remove(file_path)
response = HttpResponse(raw_data)
response["Content-Disposition"] = f"attachment; filename=users.xlsx"
response["Content-Disposition"] = "attachment; filename=users.xlsx"
response["Content-Type"] = "application/xlsx"
return response