diff --git a/bookwyrm/models/shelf.py b/bookwyrm/models/shelf.py index e35971e2e..c578f0827 100644 --- a/bookwyrm/models/shelf.py +++ b/bookwyrm/models/shelf.py @@ -55,6 +55,7 @@ class Shelf(OrderedCollectionMixin, BookWyrmModel): @property def deletable(self): + """can the shelf be safely deleted?""" return self.editable and not self.shelfbook_set.exists() def get_remote_id(self):