From 8cfb34293ab0a35c51248938070e15fbe7ceece6 Mon Sep 17 00:00:00 2001 From: Albert Cervera i Areny Date: Mon, 7 Dec 2020 12:38:27 +0100 Subject: [PATCH] Pyflakes fixes. --- __init__.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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')