Fix style

This commit is contained in:
C?dric Krier 2018-01-17 17:56:55 +01:00
parent 7722aaf956
commit 4a77819449
2 changed files with 11 additions and 11 deletions

View File

@ -1,18 +1,18 @@
# -*- encoding: utf-8 -*- # -*- encoding: utf-8 -*-
#This file is part country_zip_es module for Tryton. # This file is part country_zip_es module for Tryton.
#The COPYRIGHT file at the top level of this repository contains # The COPYRIGHT file at the top level of this repository contains
#the full copyright notices and license terms. # the full copyright notices and license terms.
from trytond.pool import Pool from trytond.pool import Pool
from .country_zip import * from . import country_zip
from .address import * from . import address
def register(): def register():
Pool.register( Pool.register(
Address, address.Address,
LoadCountryZipsStart, country_zip.LoadCountryZipsStart,
module='country_zip_es', type_='model') module='country_zip_es', type_='model')
Pool.register( Pool.register(
LoadCountryZips, country_zip.LoadCountryZips,
module='country_zip_es', type_='wizard') module='country_zip_es', type_='wizard')

View File

@ -1,6 +1,6 @@
#This file is part of country_zip_es module for Tryton. # This file is part of country_zip_es module for Tryton.
#The COPYRIGHT file at the top level of this repository contains # The COPYRIGHT file at the top level of this repository contains
#the full copyright notices and license terms. # the full copyright notices and license terms.
from csv import reader from csv import reader
from trytond.model import ModelView from trytond.model import ModelView
from trytond.pool import Pool from trytond.pool import Pool