Skip to content

Commit 19f4418

Browse files
committed
[CLN] estate: Make garden_orientation selections more readable
1 parent a1216e1 commit 19f4418

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

estate/models/estate_property.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,12 @@ class EstateProperty(models.Model):
1515
garage = fields.Boolean()
1616
garden = fields.Boolean()
1717
garden_area = fields.Integer()
18-
garden_orientation = fields.Selection(selection=[('north', 'North'), ('south', 'South'), ('east', 'East'), ('west', 'West')],
19-
help = 'Indicates the direction the garden is facing with respect to the house')
18+
garden_orientation = fields.Selection(
19+
selection=[('north', 'North'),
20+
('south', 'South'),
21+
('east', 'East'),
22+
('west', 'West')],
23+
help = 'Indicates the direction the garden is facing with respect to the house')
2024

2125

2226

0 commit comments

Comments
 (0)