Skip to content

Commit 27c446d

Browse files
committed
[CLN] estate: fix typo
1 parent 587a39a commit 27c446d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

estate/models/estate_property.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,4 +110,4 @@ def _restrict_selling_price(self) -> None:
110110
for record in self:
111111
# Selling price is zero when no offer has been accepted
112112
if not float_is_zero(record.selling_price, precision_digits=2) and float_compare(record.selling_price, 0.9 * record.expected_price, precision_digits=2) < 0:
113-
raise ValidationError(_("A property's selling price cannot be lower that 90 percent of its expected price."))
113+
raise ValidationError(_("A property's selling price cannot be lower than 90 percent of its expected price."))

0 commit comments

Comments
 (0)