diff --git a/modules/creditmutuel/pages.py b/modules/creditmutuel/pages.py index f311e236e44367d5425b03cb57e2ed1059d20a27..44ebd3b6cfde85c303301673891a219b7d7dac3c 100644 --- a/modules/creditmutuel/pages.py +++ b/modules/creditmutuel/pages.py @@ -1162,9 +1162,11 @@ def obj_code(self): class PorPage(LoggedPage, HTMLPage): - TYPES = {"PLAN D'EPARGNE EN ACTIONS": Account.TYPE_PEA, - 'P.E.A': Account.TYPE_PEA - } + TYPES = { + "PLAN D'EPARGNE EN ACTIONS": Account.TYPE_PEA, + 'P.E.A': Account.TYPE_PEA, + 'PEA': Account.TYPE_PEA, + } def get_type(self, label): for pattern, actype in self.TYPES.items():