From 3089244d4d2cf665dc91e3cfde2ac3b5a5e39b3e Mon Sep 17 00:00:00 2001 From: Louis Debeve Date: Thu, 11 May 2017 10:44:59 +0200 Subject: [PATCH] [ganssurances] diasble comings for life insurances accounts --- modules/ganassurances/browser.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/ganassurances/browser.py b/modules/ganassurances/browser.py index 09d0d6ff3c..70b34c8e70 100644 --- a/modules/ganassurances/browser.py +++ b/modules/ganassurances/browser.py @@ -90,6 +90,8 @@ def get_history(self, account): return iter([]) def get_coming(self, account): + if account.type == Account.TYPE_LIFE_INSURANCE: + return [] accounts = self.get_accounts_list() for a in accounts: if a.id == account.id: -- GitLab