Do not use asterisk in imports

This commit is contained in:
Albert Cervera i Areny 2018-10-28 00:11:48 +02:00
parent 935e6a161e
commit 0157ebbe1a

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(
Lot,
stock.Lot,
module='stock_lot_jreport', type_='model')
Pool.register(
LotReport,
stock.LotReport,
module='stock_lot_jreport', type_='report')