Fix style

This commit is contained in:
C?dric Krier 2018-01-10 15:24:16 +01:00
parent 595e99140e
commit 314dadd612
2 changed files with 4 additions and 3 deletions

View file

@ -2,9 +2,10 @@
# The COPYRIGHT file at the top level of this repository contains the full
# copyright notices and license terms.
from trytond.pool import Pool
from .invoice import *
from . import invoice
def register():
Pool.register(
Invoice,
invoice.Invoice,
module='account_invoice_visible_payments', type_='model')

View file

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