Add defaults for third-party stubs Q-T (#9959)

This commit is contained in:
Alex Waygood
2023-03-28 12:16:31 +01:00
committed by GitHub
parent 72456da2a3
commit b69b17c3d8
274 changed files with 3918 additions and 3735 deletions

View File

@@ -45,19 +45,19 @@ multiline_formats: dict[str, str]
def simple_separated_format(separator: str) -> TableFormat: ...
def tabulate(
tabular_data: Mapping[str, Iterable[Any]] | Iterable[Iterable[Any]],
headers: str | dict[str, str] | Sequence[str] = ...,
tablefmt: str | TableFormat = ...,
floatfmt: str | Iterable[str] = ...,
intfmt: str | Iterable[str] = ...,
numalign: str | None = ...,
stralign: str | None = ...,
missingval: str | Iterable[str] = ...,
showindex: str | bool | Iterable[Any] = ...,
disable_numparse: bool | Iterable[int] = ...,
colalign: Iterable[str | None] | None = ...,
maxcolwidths: int | Iterable[int | None] | None = ...,
rowalign: str | Iterable[str] | None = ...,
maxheadercolwidths: int | Iterable[int] | None = ...,
headers: str | dict[str, str] | Sequence[str] = (),
tablefmt: str | TableFormat = "simple",
floatfmt: str | Iterable[str] = "g",
intfmt: str | Iterable[str] = "",
numalign: str | None = "default",
stralign: str | None = "default",
missingval: str | Iterable[str] = "",
showindex: str | bool | Iterable[Any] = "default",
disable_numparse: bool | Iterable[int] = False,
colalign: Iterable[str | None] | None = None,
maxcolwidths: int | Iterable[int | None] | None = None,
rowalign: str | Iterable[str] | None = None,
maxheadercolwidths: int | Iterable[int] | None = None,
) -> str: ...
class JupyterHTMLStr(str):