Account.link_id becomes a private attribute
This commit is contained in:
parent
679177d450
commit
35688f58c9
18 changed files with 37 additions and 30 deletions
|
|
@ -76,11 +76,11 @@ class BNPorcBackend(BaseBackend, ICapBank):
|
|||
|
||||
def iter_history(self, account):
|
||||
with self.browser:
|
||||
return self.browser.iter_history(account.link_id)
|
||||
return self.browser.iter_history(account._link_id)
|
||||
|
||||
def iter_operations(self, account):
|
||||
with self.browser:
|
||||
return self.browser.iter_coming_operations(account.link_id)
|
||||
return self.browser.iter_coming_operations(account._link_id)
|
||||
|
||||
def iter_transfer_recipients(self, ignored):
|
||||
for account in self.browser.get_transfer_accounts().itervalues():
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue