From 530aaaec266dcfac1d6b46a6fb15c8a1a04e1026 Mon Sep 17 00:00:00 2001 From: barredterra <14891507+barredterra@users.noreply.github.com> Date: Mon, 29 Apr 2024 11:40:02 +0200 Subject: [PATCH] refactor: remove redundant excluded fields These are already caught by the `option.isdigit()` check. --- frappe/gettext/extractors/doctype.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/frappe/gettext/extractors/doctype.py b/frappe/gettext/extractors/doctype.py index 5353cf8af4..99cd69baab 100644 --- a/frappe/gettext/extractors/doctype.py +++ b/frappe/gettext/extractors/doctype.py @@ -3,9 +3,6 @@ import json EXCLUDE_SELECT_OPTIONS = [ "naming_series", "number_format", - "float_precision", - "currency_precision", - "minimum_password_score", ]