Do not use asterisk in imports.

This commit is contained in:
Albert Cervera i Areny 2018-10-22 09:09:57 +02:00
parent cdd7f0facb
commit 4e160887ed

View file

@ -1,11 +1,11 @@
# 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(
Location,
Move,
stock.Location,
stock.Move,
module='stock_location_group', type_='model')