Skip to content

Commit e9fbfd7

Browse files
committed
[IMP] estate: code formation as per odoo guidline
1 parent 5e13585 commit e9fbfd7

File tree

5 files changed

+3
-7
lines changed

5 files changed

+3
-7
lines changed

estate/models/estate_property.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from dateutil.relativedelta import relativedelta
33
from odoo.exceptions import UserError, ValidationError
44

5-
from odoo import api, models, fields, exceptions
5+
from odoo import api, models, fields
66

77

88
class EstateProperty(models.Model):

estate_account/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
#!/usr/bin/env python3
21
from . import models

estate_account/__manifest__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
#!/usr/bin/env python3
21
{
32
"name": "Estate Account",
43
"description": """
5-
Estate account module to manage Estate Customers and Salesman.
4+
Estate account module to create invoice of sold property.
65
""",
76
"version": "1.0",
87
"depends": ["estate", "account"],

estate_account/models/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
#!/usr/bin/env python3
21
from . import estate_property

estate_account/models/estate_property.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
#!/usr/bin/env python3
21
from odoo.exceptions import UserError
32

4-
from odoo import fields, models, Command
3+
from odoo import models, Command
54

65

76
class EstatePropertyInherit(models.Model):

0 commit comments

Comments
 (0)