Do not use asterisk in imports.

This commit is contained in:
Albert Cervera i Areny 2018-10-28 01:19:26 +02:00
parent b7e1013fc8
commit f73fb6b38a
1 changed files with 3 additions and 3 deletions

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 .production import *
from . import production
def register():
Pool.register(
Template,
Production,
production.Template,
production.Production,
module='production_quality_control', type_='model')