Change else statement to None vs ""

This commit is contained in:
Carlos Camara 2024-01-04 11:40:40 +01:00
parent ebcc81dd73
commit c2622a510c

View file

@ -77,9 +77,9 @@ class Export(View):
.first() .first()
) )
if readthrough: if readthrough:
book.start_date = readthrough.start_date.date() if readthrough.start_date else "" book.start_date = readthrough.start_date.date() if readthrough.start_date else None
book.finish_date = readthrough.finish_date.date() if readthrough.finish_date else "" book.finish_date = readthrough.finish_date.date() if readthrough.finish_date else None
book.stopped_date = readthrough.stopped_date.date() if readthrough.stopped_date else "" book.stopped_date = readthrough.stopped_date.date() if readthrough.stopped_date else None
review = ( review = (
models.Review.objects.filter( models.Review.objects.filter(