Skip to content

Commit 949b655

Browse files
committed
[ADD] chapter3-models: added EstateProperty model with all required fields
1 parent b1b299d commit 949b655

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

estate/__manifest__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@
55
'summary': 'Real Estate advertisement tutorial module',
66
'depends': ['base'],
77
'author': "Harsh Maniya",
8-
'category': 'Sales/Real Estate',
8+
'category': 'Real Estate/Brokerage',
99
'installable': True,
1010
'auto_install': False,
1111
'description': """
1212
Description text
1313
""",
1414
}
15+

estate/models/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
from . import estate_property # noqa: F401
1+
from . import estate_property # noqa: F401

estate/models/estate_property.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,3 @@ class EstateProperty(models.Model):
2727
],
2828
string="Garden Orientation"
2929
)
30-

0 commit comments

Comments
 (0)