mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-05-04 04:25:50 +08:00
Fix click.getchar return type (#1473)
This commit is contained in:
Vendored
+2
-1
@@ -6,6 +6,7 @@ from typing import (
|
||||
IO,
|
||||
List,
|
||||
Optional,
|
||||
Text,
|
||||
overload,
|
||||
Tuple,
|
||||
TypeVar,
|
||||
@@ -157,7 +158,7 @@ def launch(url: str, wait: bool = ..., locate: bool = ...) -> int:
|
||||
...
|
||||
|
||||
|
||||
def getchar(echo: bool = ...) -> str:
|
||||
def getchar(echo: bool = ...) -> Text:
|
||||
...
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user