Files
typeshed/stdlib/3/getpass.pyi
Jelle Zijlstra 5d553c9584 apply black and isort (#4287)
* apply black and isort

* move some type ignores
2020-06-28 13:31:00 -07:00

9 lines
199 B
Python

# Stubs for getpass
from typing import Optional, TextIO
def getpass(prompt: str = ..., stream: Optional[TextIO] = ...) -> str: ...
def getuser() -> str: ...
class GetPassWarning(UserWarning): ...