Skip to content

Commit 450100a

Browse files
committed
[FIX] estate: add whitespace around arithmetic operator in estate property manifest
1 parent 4bd1002 commit 450100a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

estate/models/estate_property.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class EstateProperty(models.Model):
1010
description = fields.Text('description')
1111
postcode = fields.Char('postcode')
1212
date_availability = fields.Date(
13-
'availabilty date', copy=False, default=fields.Date.today()+relativedelta(months=3))
13+
'availabilty date', copy=False, default=fields.Date.today() + relativedelta(months=3))
1414
expected_price = fields.Float('expected price', required=True)
1515
selling_price = fields.Float('selling price', readonly=True, copy=False)
1616
bedrooms = fields.Integer('bedrooms', default=2)

0 commit comments

Comments
 (0)