Apply black formatting to caching markdown (#9341)

It _looks_ like blacken-docs is failing on this file.
Running black locally fails with a failed to reformat.
This is because it expects python code, and  when it
hits the ">", there's invalid python.
This commit is contained in:
John-Anthony G. Thevos 2024-03-27 06:39:49 -04:00 committed by GitHub
parent f4194c4684
commit 085b7e166b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -75,11 +75,9 @@ from rest_framework.response import Response
@cache_page(60 * 15)
@vary_on_cookie
@api_view(['GET'])
@api_view(["GET"])
def get_user_list(request):
content = {
'user_feed': request.user.get_user_feed()
}
content = {"user_feed": request.user.get_user_feed()}
return Response(content)
```