do not override iter_operations() to let ICapBank raise NotImplementedError

This commit is contained in:
Romain Bignon 2010-11-12 22:47:22 +01:00
commit 1c66261bf5

View file

@ -54,10 +54,6 @@ class CragrBackend(BaseBackend, ICapBank):
else:
raise AccountNotFound()
def iter_operations(self, account):
""" TODO Not supported yet """
return iter([])
def iter_history(self, account):
for history in self.browser.get_history(account):
yield history