diff --git a/modules/boursorama/pages.py b/modules/boursorama/pages.py index 79d6c3e61974cfd200a84f3dbfd86aad78a60e35..ba882ab8f87a1d7bb33b043b8e148fff0ea94564 100644 --- a/modules/boursorama/pages.py +++ b/modules/boursorama/pages.py @@ -242,7 +242,7 @@ class item(ItemElement): def condition(self): # Ignore externally aggregated accounts and insurances: - return not self.is_external() and not any(x in Field('url')(self) for x in ('automobile', 'assurance/protection', 'assurance/comptes')) + return not self.is_external() and not any(x in Field('url')(self) for x in ('automobile', 'assurance/protection', 'assurance/comptes', 'assurance/famille')) obj_label = CleanText('.//a[has-class("account--name")] | .//div[has-class("account--name")]')