Code formatting

This commit is contained in:
Carlos Camara 2024-01-03 20:41:31 +01:00
parent db8c686dd3
commit 766a2163dd

View file

@ -72,9 +72,7 @@ class Export(View):
book.rating = review_rating.rating if review_rating else None book.rating = review_rating.rating if review_rating else None
readthrough = ( readthrough = (
models.ReadThrough.objects.filter( models.ReadThrough.objects.filter(user=request.user, book=book)
user=request.user, book=book
)
.order_by("-finish_date") .order_by("-finish_date")
.first() .first()
) )