add missing type hints in tabulate (#5825)

This commit is contained in:
Anton Grübel
2021-08-02 16:07:49 +09:00
committed by GitHub
parent ea4be02bab
commit 1f3c703993
2 changed files with 4 additions and 1 deletions

View File

@@ -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):