Skip to content

Commit 957d133

Browse files
committed
Add stubs for tabulate
1 parent 7ad682b commit 957d133

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

third_party/2and3/tabulate.pyi

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Stub for tabulate: https://bitbucket.org/astanin/python-tabulate
2+
from typing import Any, Sequence
3+
4+
5+
def tabulate(
6+
tabular_data: Sequence[Sequence[Any]],
7+
headers: Sequence[str] = ...,
8+
tablefmt: str = ...,
9+
floatfmt: str = ...,
10+
numalign: str = ...,
11+
stralign: str = ...,
12+
missingval: str = ...,
13+
showindex: str = ...,
14+
disable_numparse: bool = ...
15+
) -> str:
16+
...

0 commit comments

Comments
 (0)