Steve Canny a468b2de3b
rfctr(csv): accommodate single column CSV files (#3483)
**Summary**
Improve factoring, type-annotation, and tests for `partition_csv()` and
accommodate single-column CSV files.

Fixes: #2616
2024-08-06 00:48:37 +00:00

10 lines
184 B
Python

from __future__ import annotations
class DataFrame:
def to_html(
self,
index: bool = ...,
header: bool = ...,
na_rep: str = ...,
) -> str: ...