Always raise instances of NotImplementedError

This commit is contained in:
Laurent Bachelier 2014-10-10 13:07:26 +02:00
commit e2ac8687c6
3 changed files with 4 additions and 6 deletions

View file

@ -18,8 +18,6 @@
# along with weboob. If not, see <http://www.gnu.org/licenses/>.
from weboob.capabilities.bank import CapBank, AccountNotFound
from weboob.tools.backend import Module, BackendConfig
from weboob.tools.value import ValueBackendPassword, Value
@ -87,7 +85,7 @@ class LCLModule(Module, CapBank):
def iter_coming(self, account):
if self.BROWSER != LCLBrowser:
raise NotImplementedError
raise NotImplementedError()
with self.browser:
transactions = list(self.browser.get_cb_operations(account))