Avoid using asterisk in __init__.py imports.

This commit is contained in:
Albert Cervera i Areny 2018-09-09 12:25:15 +02:00
parent c809392cf4
commit 992431e1af
2 changed files with 2 additions and 5 deletions

View file

@ -2,11 +2,9 @@
# The COPYRIGHT file at the top level of this repository contains the full
# copyright notices and license terms.
from trytond.pool import Pool
from .move import *
from . import move
def register():
Pool.register(
MoveReport,
move.MoveReport,
module='stock_move_jreport', type_='report')

View file

@ -4,7 +4,6 @@
from trytond.modules.jasper_reports.jasper import JasperReport
from trytond.pool import PoolMeta
__all__ = ['MoveReport']
__metaclass__ = PoolMeta