From cf4026184bb6465d97ff28f7d4e8e49781d813b6 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Mon, 29 Apr 2024 11:07:27 +0200 Subject: 🐛 ODS/Excel imports fix date conversions (refs #5920) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ishtar_common/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ishtar_common/utils.py') diff --git a/ishtar_common/utils.py b/ishtar_common/utils.py index 08ef84831..92059c195 100644 --- a/ishtar_common/utils.py +++ b/ishtar_common/utils.py @@ -1281,9 +1281,9 @@ def _post_save_geo(sender, **kwargs): return -def format_int_float(values): +def np_format_int_float(values): """ - Numpy array: format integer with not "." + Numpy array: format integer with no "." """ new_values = [] for value in values: -- cgit v1.2.3