Skip to content

Commit 843a124

Browse files
committed
[FIX] estate: Styling
1 parent 3d58662 commit 843a124

3 files changed

Lines changed: 2 additions & 4 deletions

File tree

estate/models/estate_property.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
from odoo import models, fields, api
22
from odoo.exceptions import UserError, ValidationError
33
from odoo.tools.float_utils import float_compare, float_is_zero
4-
import logging
54

6-
_logger = logging.getLogger(__name__)
75

86
class EstateProperty(models.Model):
97
_name = 'estate.property'

estate/models/estate_property_type.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from odoo import models, fields, api
1+
from odoo import models, fields, api
22

33

44
class EstatePropertyType(models.Model):

estate_account/models/estate_property.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def action_sell(self):
99
for property_record in self:
1010

1111
invoice_vals = {
12-
'name': property_record.name + ' ' +'Invoice',
12+
'name': property_record.name + ' ' + 'Invoice',
1313
'partner_id': property_record.buyer_id.id,
1414
'move_type': 'out_invoice',
1515
'invoice_line_ids': [

0 commit comments

Comments
 (0)