tabulate: Add maxcolwidths arguments (#8132)

This commit is contained in:
Sebastian Rittau
2022-06-22 12:48:48 +02:00
committed by GitHub
parent 8826d3a36f
commit 9eed3275c3

View File

@@ -45,4 +45,5 @@ def tabulate(
showindex: str | bool | Iterable[Any] = ...,
disable_numparse: bool | Iterable[int] = ...,
colalign: Iterable[str | None] | None = ...,
maxcolwidths: int | Iterable[int | None] | None = ...,
) -> str: ...