From 4d46082b47b02628d465db8fd28e2cb91875df93 Mon Sep 17 00:00:00 2001 From: miklo Date: Tue, 10 Mar 2026 00:41:00 +0000 Subject: [PATCH] .fods parser correction for hyperlinks --- pandas_ods_reader/parsers/fods.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas_ods_reader/parsers/fods.py b/pandas_ods_reader/parsers/fods.py index 4f4a3f6..d75e27b 100644 --- a/pandas_ods_reader/parsers/fods.py +++ b/pandas_ods_reader/parsers/fods.py @@ -64,7 +64,7 @@ def get_value( text = cell.find(TABLE_CELL_TEXT_TAG, namespaces=cell.nsmap) if text is None: return None, 0 - value: Union[str, float] = text.text or "" + value: Union[str, float] = "".join(text.itertext()) if parsed and is_float(cell): value = float(value) _n_repeated = cell.attrib.get(