Skip to content

Commit b696008

Browse files
committed
[FIX] Estate: CI compliance
1 parent 71b1ce0 commit b696008

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

estate/__manifest__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,6 @@
1515
],
1616
'application': True,
1717
'installable': True,
18+
'author': "Odoo",
19+
'license': 'AGPL-3'
1820
}

estate/models/estate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
class EstateProperty(models.Model):
66
_name = "estate.property"
77
_description = "Estate property model"
8-
8+
99
name = fields.Char('Property name', required=True, default="Unknown")
1010
description = fields.Text('Property description')
1111
postcode = fields.Char()

0 commit comments

Comments
 (0)