Easy spacing fixes, trailing stuff
Remove useless trailing \ Remove trailing spaces Add missing empty lines autopep8 -ir -j2 --select=E301,E302,E502,W291,W293,W391 . Diff quickly checked.
This commit is contained in:
parent
c21d1f7925
commit
7094931c92
231 changed files with 474 additions and 67 deletions
|
|
@ -52,6 +52,7 @@ class Transaction(FrenchTransaction):
|
|||
(re.compile('^(?P<category>REMISE CHEQUES)(?P<text>.*)'), FrenchTransaction.TYPE_DEPOSIT),
|
||||
]
|
||||
|
||||
|
||||
class AccountHistoryPage(BasePage):
|
||||
def get_operations(self, _id):
|
||||
"""history, see http://docs.weboob.org/api/capabilities/bank.html?highlight=transaction#weboob.capabilities.bank.Transaction"""
|
||||
|
|
@ -85,6 +86,7 @@ class AccountHistoryPage(BasePage):
|
|||
|
||||
yield operation
|
||||
|
||||
|
||||
class AccountsList(BasePage):
|
||||
def on_loaded(self):
|
||||
warn = self.document.xpath('//div[@id="message_renouvellement_mot_passe"]')
|
||||
|
|
@ -156,6 +158,7 @@ class AccountsList(BasePage):
|
|||
|
||||
yield account
|
||||
|
||||
|
||||
class GlobalAccountsList(BasePage):
|
||||
pass
|
||||
|
||||
|
|
|
|||
|
|
@ -25,6 +25,7 @@ from weboob.tools.browser import BasePage, BrowserUnavailable
|
|||
|
||||
__all__ = ['LoginPage']
|
||||
|
||||
|
||||
class LoginPage(BasePage):
|
||||
def login(self, login, passwd):
|
||||
msgb = self.document.xpath(".//*[@id='message_client']/text()")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue