From 4d74c137346ed8c51af5655305da3abb7d3fde0d Mon Sep 17 00:00:00 2001 From: Laurent Bachelier Date: Tue, 17 Dec 2013 23:58:17 +0100 Subject: [PATCH] Add method that is actually required Used in galleroob and present in all CapGallery modules --- weboob/capabilities/gallery.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/weboob/capabilities/gallery.py b/weboob/capabilities/gallery.py index bc4f1621..dbb09fae 100644 --- a/weboob/capabilities/gallery.py +++ b/weboob/capabilities/gallery.py @@ -132,3 +132,12 @@ class ICapGallery(IBaseCap): :rtype: :class:`Gallery` """ raise NotImplementedError() + + def iter_gallery_images(self, gallery): + """ + Iterate images from a Gallery. + + :type gallery: BaseGallery + :rtype: iter(BaseImage) + """ + raise NotImplementedError()