Formatting

This commit is contained in:
Mouse Reeve 2021-03-16 13:39:33 -07:00
parent d947632b69
commit 6370fbf2c6
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ class Book(BookDataModel):
if self.languages and self.languages[0] != "English"
else None,
str(self.published_date.year) if self.published_date else None,
', '.join(self.publishers)
", ".join(self.publishers),
]
return ", ".join(i for i in items if i)