From 1f3c7039936ff54d87555b366de147f88d904019 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anton=20Gr=C3=BCbel?= Date: Mon, 2 Aug 2021 16:07:49 +0900 Subject: [PATCH] add missing type hints in tabulate (#5825) --- stubs/tabulate/METADATA.toml | 2 +- stubs/tabulate/tabulate.pyi | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/stubs/tabulate/METADATA.toml b/stubs/tabulate/METADATA.toml index 31f638bf3..59d3db90a 100644 --- a/stubs/tabulate/METADATA.toml +++ b/stubs/tabulate/METADATA.toml @@ -1,2 +1,2 @@ -version = "0.1" +version = "0.8" python2 = true diff --git a/stubs/tabulate/tabulate.pyi b/stubs/tabulate/tabulate.pyi index dc935400e..acfe1ae61 100644 --- a/stubs/tabulate/tabulate.pyi +++ b/stubs/tabulate/tabulate.pyi @@ -1,7 +1,10 @@ from typing import Any, Callable, Container, Dict, Iterable, List, Mapping, NamedTuple, Optional, Sequence, Union +LATEX_ESCAPE_RULES: Dict[str, str] +MIN_PADDING: int PRESERVE_WHITESPACE: bool WIDE_CHARS_MODE: bool +multiline_formats: Dict[str, str] tabulate_formats: List[str] class Line(NamedTuple):