Do not use asterisk in imports.

This commit is contained in:
Albert Cervera i Areny 2018-10-28 10:42:33 +01:00
parent 2144dc55cd
commit d49a162b26
1 changed files with 5 additions and 5 deletions

View File

@ -1,15 +1,15 @@
#The COPYRIGHT file at the top level of this repository contains the full
#copyright notices and license terms.
from trytond.pool import Pool
from .purchase import *
from . import purchase
def register():
Pool.register(
ProductSupplier,
PurchaseRequest,
PurchaseLine,
purchase.ProductSupplier,
purchase.PurchaseRequest,
purchase.PurchaseLine,
module='stock_supply_minimum', type_='model')
Pool.register(
CreatePurchase,
purchase.CreatePurchase,
module='stock_supply_minimum', type_='wizard')