.fods parser correction for hyperlinks

This commit is contained in:
miklo 2026-03-10 00:41:00 +00:00
parent 26b95141dc
commit 4d46082b47
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ def get_value(
text = cell.find(TABLE_CELL_TEXT_TAG, namespaces=cell.nsmap) text = cell.find(TABLE_CELL_TEXT_TAG, namespaces=cell.nsmap)
if text is None: if text is None:
return None, 0 return None, 0
value: Union[str, float] = text.text or "" value: Union[str, float] = "".join(text.itertext())
if parsed and is_float(cell): if parsed and is_float(cell):
value = float(value) value = float(value)
_n_repeated = cell.attrib.get( _n_repeated = cell.attrib.get(