Skip to content

Commit afbc26f

Browse files
committed
[IMP] models: checked style
1 parent bd998ec commit afbc26f

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

estate/__manifest__.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
{ 'name': 'Real Estate',
2-
'depends': ['base'],
3-
'application': True,
4-
'author': 'leker',
5-
'license': 'LGPL-3'
1+
{'name': 'Real Estate',
2+
'depends': ['base'],
3+
'application': True,
4+
'author': 'leker',
5+
'license': 'LGPL-3',
66
}

estate/models/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from . import estate_property

estate/models/estate_property.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
from odoo import models
2+
3+
4+
class Property(models.Model):
5+
_name = "estate.property"

0 commit comments

Comments
 (0)