From 9b9a2e9b2a4d04ab615a005fadb4efe03fd7d01f Mon Sep 17 00:00:00 2001 From: Lev Blit Date: Fri, 18 Sep 2026 19:01:19 +0300 Subject: [PATCH] [colorful]: annotate Colorful.ColorfulStyle.__or__ other param this was the last unannotated param in this package --- stubs/colorful/colorful/core.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stubs/colorful/colorful/core.pyi b/stubs/colorful/colorful/core.pyi index 8fe0a797f7f6..07fc212a7fd6 100644 --- a/stubs/colorful/colorful/core.pyi +++ b/stubs/colorful/colorful/core.pyi @@ -97,7 +97,7 @@ class Colorful: def evaluate(self, string: _str, nested: bool = False) -> ColorfulString: ... def __and__(self, other: Self) -> Self: ... def __call__(self, string: _str, nested: bool = False) -> ColorfulString: ... - def __or__(self, other) -> ColorfulString: ... + def __or__(self, other: _str) -> ColorfulString: ... def __eq__(self, other: object) -> bool: ... def __hash__(self) -> int: ...