.fods parser correction for hyperlinks
This commit is contained in:
parent
26b95141dc
commit
4d46082b47
|
|
@ -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(
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue