Fix style

This commit is contained in:
C?dric Krier 2018-01-10 15:10:02 +01:00
parent fefc652e23
commit 9e5a8634fd
3 changed files with 12 additions and 13 deletions

View File

@ -1,12 +1,12 @@
#This file is part account_invoice_taxes_required module for Tryton.
#The COPYRIGHT file at the top level of this repository contains
#the full copyright notices and license terms.
# This file is part account_invoice_taxes_required module for Tryton.
# 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,
InvoiceLine,
invoice.Invoice,
invoice.InvoiceLine,
module='account_invoice_taxes_required', type_='model')

View File

@ -1,6 +1,6 @@
#This file is part account_invoice_taxes_required module for Tryton.
#The COPYRIGHT file at the top level of this repository contains
#the full copyright notices and license terms.
# This file is part account_invoice_taxes_required module for Tryton.
# The COPYRIGHT file at the top level of this repository contains
# the full copyright notices and license terms.
from trytond.pool import Pool, PoolMeta

View File

@ -1,7 +1,6 @@
#This file is part account_invoice_taxes_required module for Tryton.
#The COPYRIGHT file at the top level of this repository contains
#the full copyright notices and license terms.
from .test_account_invoice_taxes_required import suite
# This file is part account_invoice_taxes_required module for Tryton.
# The COPYRIGHT file at the top level of this repository contains
# the full copyright notices and license terms.
try:
from trytond.modules.account_invoice_taxes_required.tests.test_account_invoice_taxes_required import suite
except ImportError: