From 9eed3275c357dc50d0f62021d9d38b239240ca3a Mon Sep 17 00:00:00 2001 From: Sebastian Rittau Date: Wed, 22 Jun 2022 12:48:48 +0200 Subject: [PATCH] tabulate: Add maxcolwidths arguments (#8132) --- stubs/tabulate/tabulate.pyi | 1 + 1 file changed, 1 insertion(+) diff --git a/stubs/tabulate/tabulate.pyi b/stubs/tabulate/tabulate.pyi index 30c8329bf..bba1e8d2f 100644 --- a/stubs/tabulate/tabulate.pyi +++ b/stubs/tabulate/tabulate.pyi @@ -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: ...