From c4072cbc04263e71e14cbf4e8746880fdea5fd3f Mon Sep 17 00:00:00 2001 From: Fabien Basmaison Date: Wed, 9 Jun 2021 18:54:05 +0200 Subject: [PATCH] Be nice to Black and follow styleguides. --- bookwyrm/templatetags/utilities.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bookwyrm/templatetags/utilities.py b/bookwyrm/templatetags/utilities.py index 7e4de3786..ba7ef1cb1 100644 --- a/bookwyrm/templatetags/utilities.py +++ b/bookwyrm/templatetags/utilities.py @@ -29,7 +29,7 @@ def get_title(book, too_short=6): if len(title) < too_short and book.subtitle: title = _("%(title)s: %(subtitle)s") % { "title": title, - "subtitle": book.subtitle + "subtitle": book.subtitle, } return title