Update docstrings

This commit is contained in:
sneakypete81 2013-09-07 10:49:14 +01:00
parent 3e4fdf6dd6
commit 7afb709531
4 changed files with 108 additions and 32 deletions

View file

@ -18,6 +18,8 @@ class Album(TroveboxObject):
if isinstance(self.cover, dict):
self.cover = Photo(self._trovebox, self.cover)
# def cover_update(self, photo, **kwds):
def delete(self, **kwds):
"""
Endpoint: /album/<id>/delete.json
@ -37,10 +39,12 @@ class Album(TroveboxObject):
""" Not implemented yet """
raise NotImplementedError()
# TODO: Should be just "add"
def add_photos(self, photos, **kwds):
""" Not implemented yet """
raise NotImplementedError()
# TODO: Should be just "remove"
def remove_photos(self, photos, **kwds):
""" Not implemented yet """
raise NotImplementedError()