From 126fca0224828ab17ed275528545eb144a8af38a Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 24 Sep 2024 19:34:56 +0530 Subject: [PATCH] ... --- kitty/window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/window.py b/kitty/window.py index 291b3c21a..18a9f3c5f 100644 --- a/kitty/window.py +++ b/kitty/window.py @@ -805,7 +805,7 @@ class Window: return tab.overlay_parent(self) @property - def current_colors(self) -> dict[str, Optional[int | tuple[tuple[Color, float], ...]]]: + def current_colors(self) -> dict[str, Union[int, None, tuple[tuple[Color, float], ...]]]: return self.screen.color_profile.as_dict() @property