diff --git a/__init__.py b/__init__.py index 8fd5cd9..9f0587f 100644 --- a/__init__.py +++ b/__init__.py @@ -2,12 +2,12 @@ # The COPYRIGHT file at the top level of this repository contains the full # copyright notices and license terms. from trytond.pool import Pool -from .carrier import * -from .sale import * +from . import carrier +from . import sale def register(): Pool.register( - CarrierSelection, - Sale, + carrier.CarrierSelection, + sale.Sale, module='carrier_zip', type_='model')