From cd4b19918ceebfc3c00d97f2483b127ffa55b048 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 7 Mar 2023 12:02:08 +0530 Subject: [PATCH] make the latest mypy happy --- kitty/tab_bar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/tab_bar.py b/kitty/tab_bar.py index a6363f7f8..c1fbd62ab 100644 --- a/kitty/tab_bar.py +++ b/kitty/tab_bar.py @@ -144,7 +144,7 @@ class Formatter: @run_once -def super_sub_maps() -> Tuple[Dict[int, Union[None, int]], Dict[int, Union[None, int]]]: +def super_sub_maps() -> Tuple[Dict[int, int], Dict[int, int]]: import string sup_table = str.maketrans( string.ascii_lowercase + string.ascii_uppercase + string.digits + '+-=()',