Skip to content

Commit 641aed9

Browse files
committed
[IMP] estate: estate_account had import error
Fixed path of estate_account module.
1 parent 5ccd329 commit 641aed9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

estate/models/estate_property_offer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def create(self, vals):
7575
raise UserError("You cannot create an offer with a lower amount than an existing offer for this property.")
7676

7777
records = super().create(vals)
78-
if isinstance(records, models.Model):
78+
if isinstance(records, models.Model):
7979
for offer in records:
8080
offer.property_id.state = "offer_received"
8181
return records

0 commit comments

Comments
 (0)