Pyflakes fixes.

This commit is contained in:
Albert Cervera i Areny 2020-12-07 12:38:27 +01:00
parent e187d75197
commit 8cfb34293a
1 changed files with 4 additions and 4 deletions

View File

@ -2,12 +2,12 @@
# The COPYRIGHT file at the top level of this repository contains the full # The COPYRIGHT file at the top level of this repository contains the full
# copyright notices and license terms. # copyright notices and license terms.
from trytond.pool import Pool from trytond.pool import Pool
from .carrier import * from . import carrier
from .sale import * from . import sale
def register(): def register():
Pool.register( Pool.register(
CarrierSelection, carrier.CarrierSelection,
Sale, sale.Sale,
module='carrier_zip', type_='model') module='carrier_zip', type_='model')