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
# 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')