massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / humanfriendly / humanfriendly / prompts.pyi
1 from typing import Any
2
3 MAX_ATTEMPTS: int
4 logger: Any
5
6 def prompt_for_confirmation(question, default: Any | None = ..., padding: bool = ...): ...
7 def prompt_for_choice(choices, default: Any | None = ..., padding: bool = ...): ...
8 def prompt_for_input(question, default: Any | None = ..., padding: bool = ..., strip: bool = ...): ...
9 def prepare_prompt_text(prompt_text, **options): ...
10 def prepare_friendly_prompts() -> None: ...
11 def retry_limit(limit=...) -> None: ...
12
13 class TooManyInvalidReplies(Exception): ...