From 239bdb34900248823bbd2f37bd3de5dfb91c2169 Mon Sep 17 00:00:00 2001 From: Quentin Defenouillere Date: Thu, 22 Nov 2018 11:34:24 +0100 Subject: [PATCH] [boursorama] Corrected indentation mistake --- modules/boursorama/pages.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/boursorama/pages.py b/modules/boursorama/pages.py index 37be0a37c1..84244cb28f 100644 --- a/modules/boursorama/pages.py +++ b/modules/boursorama/pages.py @@ -356,8 +356,8 @@ def obj_balance(self): return balance def obj_type(self): - _type = CleanText('//h2[contains(@class, "page-title__account")]//div[@class="account-edit-label"]/span') - return Map(_type, self.page.LOAN_TYPES, default=Account.TYPE_LOAN)(self) + _type = CleanText('//h2[contains(@class, "page-title__account")]//div[@class="account-edit-label"]/span') + return Map(_type, self.page.LOAN_TYPES, default=Account.TYPE_LOAN)(self) def obj_next_payment_date(self): tmp = CleanText('//p[contains(text(), "Date de la prochaine échéance")]/span')(self) -- GitLab