Make generated table col name use underscore not hyphen
This commit is contained in:
parent
588081417b
commit
2d30d8b124
@ -273,7 +273,7 @@ def extract_data(html):
|
|||||||
)
|
)
|
||||||
if td:
|
if td:
|
||||||
columns.append(
|
columns.append(
|
||||||
f"{table_control}-{th.get_text(strip=True)}"
|
f"{table_control}_{th.get_text(strip=True)}"
|
||||||
) # Format as desired
|
) # Format as desired
|
||||||
|
|
||||||
records.append(
|
records.append(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user