From a7c46919e18bebdd0d69a817e67249c4c14558b5 Mon Sep 17 00:00:00 2001 From: Quentin Defenouillere Date: Mon, 4 Mar 2019 18:43:21 +0100 Subject: [PATCH] [caels] Correct method name for iter_investment The iter_investments() method in AmundiBrowser was renamed iter_investment() to fit the method call from the AG2R module, it also has to be modified for caels that is a child of amundi. --- modules/caels/module.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/caels/module.py b/modules/caels/module.py index e07240dfa1..e66d77be32 100644 --- a/modules/caels/module.py +++ b/modules/caels/module.py @@ -54,7 +54,7 @@ def iter_accounts(self): return self.browser.iter_accounts() def iter_investment(self, account): - return self.browser.iter_investments(account) + return self.browser.iter_investment(account) def iter_history(self, account): return self.browser.iter_history(account) -- GitLab