style: run linter

This commit is contained in:
Dustin Steiner 2023-01-24 13:14:06 +00:00
parent 35d30a41f3
commit cd13e6f523
No known key found for this signature in database
GPG key ID: 918D51522D8CB8F2
2 changed files with 47 additions and 42 deletions

View file

@ -610,7 +610,11 @@ urlpatterns = [
# books # books
re_path(rf"{BOOK_PATH}(.json)?/?$", views.Book.as_view(), name="book"), re_path(rf"{BOOK_PATH}(.json)?/?$", views.Book.as_view(), name="book"),
re_path(rf"{BOOK_PATH}{regex.SLUG}/?$", views.Book.as_view(), name="book"), re_path(rf"{BOOK_PATH}{regex.SLUG}/?$", views.Book.as_view(), name="book"),
re_path(r"^series/by/(?P<author_id>\d+)/?$", views.BookSeriesBy.as_view(), name="book-series-by"), re_path(
r"^series/by/(?P<author_id>\d+)/?$",
views.BookSeriesBy.as_view(),
name="book-series-by",
),
re_path( re_path(
rf"{BOOK_PATH}/(?P<user_statuses>review|comment|quote)/?$", rf"{BOOK_PATH}/(?P<user_statuses>review|comment|quote)/?$",
views.Book.as_view(), views.Book.as_view(),

View file

@ -19,9 +19,7 @@ class BookSeriesBy(View):
author = get_object_or_404(models.Author, id=author_id) author = get_object_or_404(models.Author, id=author_id)
results = ( results = models.Edition.objects.filter(authors=author, series=series_name)
models.Edition.objects.filter(authors=author, series=series_name)
)
# when there are multiple editions of the same work, pick the closest # when there are multiple editions of the same work, pick the closest
editions_of_work = results.values_list("parent_work__id", flat=True).distinct() editions_of_work = results.values_list("parent_work__id", flat=True).distinct()
@ -32,9 +30,7 @@ class BookSeriesBy(View):
unsortable_books = [] unsortable_books = []
for work_id in set(editions_of_work): for work_id in set(editions_of_work):
result = ( result = (
results.filter(parent_work=work_id) results.filter(parent_work=work_id).order_by("-edition_rank").first()
.order_by("-edition_rank")
.first()
) )
if result.series_number: if result.series_number:
numbered_books.append(result) numbered_books.append(result)
@ -44,9 +40,14 @@ class BookSeriesBy(View):
unsortable_books.append(result) unsortable_books.append(result)
list_results = ( list_results = (
sorted(numbered_books, key=lambda book: book.series_number) + sorted(numbered_books, key=lambda book: book.series_number)
sorted(dated_books, key=lambda book: book.first_published_date if book.first_published_date else book.published_date) + + sorted(
sorted(unsortable_books, key=lambda book: book.sort_title) dated_books,
key=lambda book: book.first_published_date
if book.first_published_date
else book.published_date,
)
+ sorted(unsortable_books, key=lambda book: book.sort_title)
) )
data = { data = {