Skip to content

Commit ac98257

Browse files
committed
[FIX] estate: remove redundant calls to _() for field values
1 parent 268a475 commit ac98257

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

estate_account/models/estate_property.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ class EstateProperty(models.Model):
55
_inherit = "estate.property"
66

77
def action_set_sold(self) -> bool:
8-
percent_description = _("6 percent of selling price")
9-
admin_fee_description = _("Administrative fees")
8+
percent_description = "6 percent of selling price"
9+
admin_fee_description = "Administrative fees"
1010
# Note: does not work if fiscal localization is not set
1111
for record in self:
1212
account_move = {

0 commit comments

Comments
 (0)