[MERGE] sync from website-al
[odoo/odoo.git] / addons / website_sale / models / product_attributes.py
index ddc5467..c920039 100644 (file)
@@ -41,7 +41,6 @@ class attributes(osv.Model):
         'type': fields.selection([('distinct', 'Distinct'), ('float', 'Float')], "Type", required=True),
         'value_ids': fields.one2many('product.attribute.value', 'attribute_id', 'Values'),
         'product_ids': fields.one2many('product.attribute.product', 'attribute_id', 'Products'),
-
         'float_max': fields.function(_get_float_max, type='float', string="Max", store={
                 'product.attribute.product': (_get_min_max, ['value','attribute_id'], 20),
             }),