Skip to content

Commit a29276d

Browse files
committed
[CLN] estate: code formate and removed some blank lines
1 parent 63624e0 commit a29276d

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

estate/models/estate_property_offer.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from dateutil.relativedelta import relativedelta
22

3-
from odoo import api, models, fields, exceptions
3+
from odoo import api, models, fields
44

55

66
class EstatePropertyOffer(models.Model):
@@ -37,11 +37,10 @@ def action_accept(self):
3737
record.property_id.selling_price = record.price
3838
record.property_id.customer = record.partner_id
3939
return True
40-
40+
4141
def action_refuse(self):
4242
for record in self:
4343
record.status = "refused"
4444
record.property_id.selling_price = 0.00
4545
record.property_id.customer = None
4646
return True
47-

0 commit comments

Comments
 (0)