Remove stubs for termcolor (#9986)

This commit is contained in:
Nikita Sobolev
2023-04-01 12:39:45 +03:00
committed by GitHub
parent 4b04bf49bb
commit 6f9f13d781
2 changed files with 0 additions and 16 deletions

View File

@@ -1,2 +0,0 @@
version = "1.1.*"
obsolete_since = "2.0.0" # Released on 2022-09-11

View File

@@ -1,14 +0,0 @@
from collections.abc import Iterable
from typing import Any
__ALL__: list[str]
VERSION: tuple[int, ...]
ATTRIBUTES: dict[str, int]
COLORS: dict[str, int]
HIGHLIGHTS: dict[str, int]
RESET: 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 = None, on_color: str | None = None, attrs: Iterable[str] | None = None, **kwargs: Any
) -> None: ...