From 6c7eab6c580dc00e67726f220a725c8426414a82 Mon Sep 17 00:00:00 2001 From: Quentin Defenouillere Date: Fri, 3 Jan 2020 17:34:10 +0100 Subject: [PATCH] weboob.capabilities.bank: Keep only PER We decided to keep only PER and handle different kinds with specific attributes later on. --- weboob/capabilities/bank.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/weboob/capabilities/bank.py b/weboob/capabilities/bank.py index db6fb4007d..f66e7843f9 100644 --- a/weboob/capabilities/bank.py +++ b/weboob/capabilities/bank.py @@ -259,10 +259,6 @@ class AccountType(Enum): "Revolving credit" PER = 20 "Pension plan PER" - PER_INDIVIDUAL = 21 - "Individual Pension plan PER" - PER_COMPANY = 22 - "Company Pension plan PER" class AccountOwnerType(object): @@ -314,8 +310,6 @@ class Account(BaseAccount): TYPE_CONSUMER_CREDIT = AccountType.CONSUMER_CREDIT TYPE_REVOLVING_CREDIT = AccountType.REVOLVING_CREDIT TYPE_PER = AccountType.PER - TYPE_PER_INDIVIDUAL = AccountType.PER_INDIVIDUAL - TYPE_PER_COMPANY = AccountType.PER_COMPANY type = EnumField('Type of account', AccountType, default=TYPE_UNKNOWN) owner_type = StringField('Usage of account') # cf AccountOwnerType class -- GitLab