mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-07-28 03:20:57 +00:00

**Summary** Improve factoring, type-annotation, and tests for `partition_csv()` and accommodate single-column CSV files. Fixes: #2616
10 lines
184 B
Python
10 lines
184 B
Python
from __future__ import annotations
|
|
|
|
class DataFrame:
|
|
def to_html(
|
|
self,
|
|
index: bool = ...,
|
|
header: bool = ...,
|
|
na_rep: str = ...,
|
|
) -> str: ...
|