Skip to content

Commit cd7129b

Browse files
committed
[FIX] estate: fixed style
1 parent 6df6ca1 commit cd7129b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

estate/models/estate_proprety.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
from odoo import fields, models
22

3+
34
class EstateProprety(models.Model):
45
_name = "estate.proprety"
56
_description = "Estate Proprety"
67

7-
88
name = fields.Char('Estate Name', required=True)
99
description = fields.Text('Estate Description', required=True)
1010
postcode = fields.Char('Estate Postcode', required=True)
@@ -21,4 +21,3 @@ class EstateProprety(models.Model):
2121
selection=[('north', 'North'), ('south', 'South'), ('west', 'West'), ('east', 'East')],
2222
help="Garden orientation selection"
2323
)
24-

0 commit comments

Comments
 (0)