Apply black formatting to caching markdown

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 Thevos 2024-03-22 19:42:17 -04:00
parent 6df509863d
commit fa0c0e4c00

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)
```