Do not use asterisk in imports

This commit is contained in:
Albert Cervera i Areny 2018-10-28 00:48:32 +02:00
parent af70955064
commit d31e1527db
1 changed files with 5 additions and 5 deletions

View File

@ -1,13 +1,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 .stock import *
from . import stock
def register():
Pool.register(
Package,
Move,
Production,
ShipmentOut,
stock.Package,
stock.Move,
stock.Production,
stock.ShipmentOut,
module='production_package', type_='model')