diff --git a/modules/delubac/backend.py b/modules/delubac/backend.py
index 91cf7dfe..2a6f6420 100644
--- a/modules/delubac/backend.py
+++ b/modules/delubac/backend.py
@@ -17,8 +17,6 @@
# You should have received a copy of the GNU Affero General Public License
# along with weboob. If not, see .
-from itertools import ifilter
-
from weboob.capabilities.bank import ICapBank
from weboob.tools.backend import BaseBackend, BackendConfig
from weboob.tools.value import ValueBackendPassword
@@ -53,8 +51,4 @@ class DelubacBackend(BaseBackend, ICapBank):
def iter_history(self, account, coming=False):
with self.browser:
- return ifilter(lambda tr: coming == tr._is_coming,
- self.browser.iter_history(account))
-
- #def iter_coming(self, account):
- # return self.iter_history(account, coming=True)
+ return self.browser.iter_history(account)
diff --git a/modules/delubac/pages.py b/modules/delubac/pages.py
index b365136b..95de8f02 100644
--- a/modules/delubac/pages.py
+++ b/modules/delubac/pages.py
@@ -30,7 +30,6 @@ __all__ = ['LoginPage', 'DashboardPage', 'OperationsPage']
class LoginPage(BasePage):
-
def login(self, username, password):
self.browser.select_form(name="frmLogin")
self.browser['username'] = username
@@ -105,5 +104,3 @@ class Transaction(FrenchTransaction):
FrenchTransaction.TYPE_CHECK),
(re.compile('^RCH (?P.*)'),
FrenchTransaction.TYPE_DEPOSIT)]
-
- _is_coming = False