Remove tuple method parameters
They can be found through autopep8 (W690) or python-modernize. Variables manually renamed. This is because Python 3 does not support tuple unpacking: http://legacy.python.org/dev/peps/pep-3113/
This commit is contained in:
parent
6161a0aacd
commit
e783f2c821
10 changed files with 22 additions and 13 deletions
|
|
@ -43,7 +43,7 @@ class CreditDuNordModule(Module, CapBank):
|
|||
'www.banque-kolb.fr': u'Banque Kolb',
|
||||
'www.banque-rhone-alpes.fr': u'Banque Rhône-Alpes',
|
||||
'www.tarneaud.fr': u'Tarneaud',
|
||||
}.iteritems(), key=lambda (k, v): (v, k))])
|
||||
}.iteritems(), key=lambda k_v: (k_v[1], k_v[0]))])
|
||||
CONFIG = BackendConfig(Value('website', label='Banque', choices=website_choices, default='www.credit-du-nord.fr'),
|
||||
ValueBackendPassword('login', label='Identifiant', masked=False),
|
||||
ValueBackendPassword('password', label='Code confidentiel'))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue