We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ad682b commit 957d133Copy full SHA for 957d133
third_party/2and3/tabulate.pyi
@@ -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