massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / coc-python-data / languageServer.0.5.59 / Typeshed / third_party / 2and3 / click / _termui_impl.pyi
1 from typing import ContextManager, Iterator, Generic, TypeVar\r
2 \r
3 _T = TypeVar("_T")\r
4 \r
5 class ProgressBar(object, Generic[_T]):\r
6     def update(self, n_steps: int) -> None: ...\r
7     def finish(self) -> None: ...\r
8     def __enter__(self) -> "ProgressBar[_T]": ...\r
9     def __exit__(self, exc_type, exc_value, tb) -> None: ...\r
10     def __iter__(self) -> "ProgressBar[_T]": ...\r
11     def next(self) -> _T: ...\r
12     def __next__(self) -> _T: ...\r