diff --git a/stubs/termcolor/METADATA.toml b/stubs/termcolor/METADATA.toml deleted file mode 100644 index cfdea080c..000000000 --- a/stubs/termcolor/METADATA.toml +++ /dev/null @@ -1,2 +0,0 @@ -version = "1.1.*" -obsolete_since = "2.0.0" # Released on 2022-09-11 diff --git a/stubs/termcolor/termcolor.pyi b/stubs/termcolor/termcolor.pyi deleted file mode 100644 index 75ab0f622..000000000 --- a/stubs/termcolor/termcolor.pyi +++ /dev/null @@ -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: ...