Fix style

This commit is contained in:
C?dric Krier 2018-01-11 11:00:27 +01:00
parent 4be834c5f2
commit 65a9ced930
3 changed files with 8 additions and 7 deletions

View File

@ -2,13 +2,13 @@
# The COPYRIGHT file at the top level of this repository contains
# the full copyright notices and license terms.
from trytond.pool import Pool
from .account import *
from .move import *
from . import account
from . import move
def register():
Pool.register(
Account,
Line,
Reconciliation,
account.Account,
move.Line,
move.Reconciliation,
module='account_reconcile_different_party', type_='model')

View File

@ -9,7 +9,8 @@ class Account:
__metaclass__ = PoolMeta
__name__ = 'account.account'
different_party_reconcile = fields.Boolean('Different Party Reconciliation',
different_party_reconcile = fields.Boolean(
'Different Party Reconciliation',
help='Allow move lines of this account to be reconciled despite '
'having different party.')

View File

@ -15,4 +15,4 @@ def suite():
suite = trytond.tests.test_tryton.suite()
suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
AccountReconcileDifferentPartyTestCase))
return suite
return suite