Skip to content

Commit

Permalink
Blacking
Browse files Browse the repository at this point in the history
  • Loading branch information
rdbende committed Jan 19, 2024
1 parent 68e2924 commit 6d33b2b
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions cozy/view_model/library_view_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,7 @@ def authors(self):

authors = {
book.author
for book
in self._model.books
for book in self._model.books
if is_book_online(book) or show_offline_books or book.downloaded
}

Expand All @@ -110,8 +109,7 @@ def readers(self):

readers = {
book.reader
for book
in self._model.books
for book in self._model.books
if is_book_online(book) or show_offline_books or book.downloaded
}

Expand Down

0 comments on commit 6d33b2b

Please sign in to comment.