No top level typing issues for kittens

This commit is contained in:
Kovid Goyal
2020-03-04 07:49:28 +05:30
parent c9ce2f47dc
commit 36eb52424f
7 changed files with 42 additions and 20 deletions

View File

@@ -6,10 +6,10 @@ import concurrent
import os
import re
from pygments import highlight
from pygments.formatter import Formatter
from pygments.lexers import get_lexer_for_filename
from pygments.util import ClassNotFound
from pygments import highlight # type: ignore
from pygments.formatter import Formatter # type: ignore
from pygments.lexers import get_lexer_for_filename # type: ignore
from pygments.util import ClassNotFound # type: ignore
from kitty.rgb import color_as_sgr, parse_sharp