io.py 113 Bytes
Newer Older
kihoon.lee's avatar
upload  
kihoon.lee committed
1
2
3
4
from typing import List, Tuple

BBOX = Tuple[int, int, int, int]
CELL_TEXTS = List[List[List[Tuple[BBOX, str]]]]