diff --git a/src/calibre/devices/interface.py b/src/calibre/devices/interface.py index ad21632a50..bed5a0b77c 100644 --- a/src/calibre/devices/interface.py +++ b/src/calibre/devices/interface.py @@ -464,6 +464,13 @@ class DevicePlugin(Plugin): ''' pass + def prepare_addable_books(self, paths): + ''' + Given a list of paths, returns another list of paths. These paths + point to addable versions of the books. + ''' + return paths + class BookList(list): ''' A list of books. Each Book object must have the fields @@ -518,9 +525,3 @@ class BookList(list): ''' raise NotImplementedError() - def prepare_addable_books(self, paths): - ''' - Given a list of paths, returns another list of paths. These paths - point to addable versions of the books. - ''' - return paths