mirror of
https://github.com/NaN-tic/trytond-account_invoice_visible_payments.git
synced 2023-12-13 21:20:10 +01:00
Fix style
This commit is contained in:
parent
595e99140e
commit
314dadd612
2 changed files with 4 additions and 3 deletions
|
@ -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')
|
||||
|
|
|
@ -15,4 +15,4 @@ def suite():
|
|||
suite = trytond.tests.test_tryton.suite()
|
||||
suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
|
||||
AccountInvoiceVisiblePaymentsTestCase))
|
||||
return suite
|
||||
return suite
|
||||
|
|
Loading…
Reference in a new issue