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 -*-
#This file is part country_zip_es module for Tryton.
#The COPYRIGHT file at the top level of this repository contains
#the full copyright notices and license terms.
# This file is part country_zip_es module for Tryton.
# The COPYRIGHT file at the top level of this repository contains
# the full copyright notices and license terms.
from trytond.pool import Pool
from .country_zip import *
from .address import *
from . import country_zip
from . import address
def register():
Pool.register(
Address,
LoadCountryZipsStart,
address.Address,
country_zip.LoadCountryZipsStart,
module='country_zip_es', type_='model')
Pool.register(
LoadCountryZips,
country_zip.LoadCountryZips,
module='country_zip_es', type_='wizard')

View File

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