Add more type annotations

This commit is contained in:
Kovid Goyal
2021-10-27 10:50:24 +05:30
parent 9c2f96f7eb
commit 6f19fd5912
5 changed files with 23 additions and 17 deletions

View File

@@ -4,9 +4,9 @@ from .collect import Segment
def split_with_highlights(
line: str, truncate_points: List[int], fg_highlights: List,
line: str, truncate_points: List[int], fg_highlights: List[Segment],
bg_highlight: Optional[Segment]
) -> List:
) -> List[str]:
pass