From 65b572313fde6d19e14b436ffd2f2b5d795642c3 Mon Sep 17 00:00:00 2001 From: sobolevn Date: Thu, 30 Mar 2023 14:18:32 +0300 Subject: [PATCH] Remove `termcolor`, refs #8752 --- stubs/termcolor/METADATA.toml | 2 -- stubs/termcolor/termcolor.pyi | 14 -------------- 2 files changed, 16 deletions(-) delete mode 100644 stubs/termcolor/METADATA.toml delete mode 100644 stubs/termcolor/termcolor.pyi diff --git a/stubs/termcolor/METADATA.toml b/stubs/termcolor/METADATA.toml deleted file mode 100644 index cfdea080c32e..000000000000 --- 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 75ab0f622b5f..000000000000 --- 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: ...