mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-16 00:37:10 +08:00
Add default values for termcolor (#9963)
This commit is contained in:
@@ -8,7 +8,7 @@ COLORS: dict[str, int]
|
||||
HIGHLIGHTS: dict[str, int]
|
||||
RESET: str
|
||||
|
||||
def colored(text: str, color: str | None = ..., on_color: str | None = ..., attrs: Iterable[str] | None = ...) -> str: ...
|
||||
def colored(text: str, color: str | None = None, on_color: str | None = None, attrs: Iterable[str] | None = None) -> str: ...
|
||||
def cprint(
|
||||
text: str, color: str | None = ..., on_color: str | None = ..., attrs: Iterable[str] | None = ..., **kwargs: Any
|
||||
text: str, color: str | None = None, on_color: str | None = None, attrs: Iterable[str] | None = None, **kwargs: Any
|
||||
) -> None: ...
|
||||
|
||||
Reference in New Issue
Block a user