Skip to content

Commit

Permalink
Add default values for termcolor (#9963)
Browse files Browse the repository at this point in the history
  • Loading branch information
Avasam authored Mar 27, 2023
1 parent 4090282 commit 72456da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stubs/termcolor/termcolor.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -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: ...

0 comments on commit 72456da

Please sign in to comment.