@ -31,8 +31,8 @@
'description': """
Partner Helper
==============
The purpose of this module is to gather generic partner methods in the same module.
It avoid to grow up excessively the number of module in Odoo for small features.
The purpose of this module is to gather generic partner methods.
It avoid to grow up excessively the number of module in Odoo for small features
Description
-----------
@ -63,5 +63,5 @@ class ResPartner(orm.Model):
elif street <= max_size:
return [street] + split_char(street2, output_number - 1, max_size)
else:
return split_char('%s %s' % (street, street2), output_number, max_size)
return split_char(
'%s %s' % (street, street2), output_number, max_size)