diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2024-04-29 11:07:27 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2024-04-29 11:07:27 +0200 |
commit | cf4026184bb6465d97ff28f7d4e8e49781d813b6 (patch) | |
tree | 60d4c85a151d7173c7224a0572be99f787bc1ab6 /ishtar_common/utils.py | |
parent | 8f33cc4c4b5f2e86fccbba180f660472a8be93cb (diff) | |
download | Ishtar-cf4026184bb6465d97ff28f7d4e8e49781d813b6.tar.bz2 Ishtar-cf4026184bb6465d97ff28f7d4e8e49781d813b6.zip |
🐛 ODS/Excel imports fix date conversions (refs #5920)
Diffstat (limited to 'ishtar_common/utils.py')
-rw-r--r-- | ishtar_common/utils.py | 4 |
1 files changed, 2 insertions, 2 deletions
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: |