More typing work

This commit is contained in:
Kovid Goyal
2020-03-04 06:10:57 +05:30
parent 5730ce5f53
commit a4cc10c41b
12 changed files with 340 additions and 65 deletions

View File

@@ -3,6 +3,7 @@
# License: GPL v3 Copyright: 2018, Kovid Goyal <kovid at kovidgoyal.net>
from collections import namedtuple
from typing import Set
from .config import build_ansi_color_table
from .constants import WindowGeometry
@@ -26,7 +27,7 @@ def as_rgb(x):
return (x << 8) | 2
template_failures = set()
template_failures: Set[str] = set()
def draw_title(draw_data, screen, tab, index):