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

@ -4,15 +4,15 @@
# 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')