Skip to content

Commit b1b299d

Browse files
committed
[ADD] chapter3-models and basic fields: added EstateProperty model with all required fields
1 parent 44c779f commit b1b299d

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

estate/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
from . import models
1+
from . import models

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: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,5 @@ class EstateProperty(models.Model):
2626
('west', 'West'),
2727
],
2828
string="Garden Orientation"
29-
)
29+
)
30+

0 commit comments

Comments
 (0)