You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
masque/masque/utils/types.py

9 lines
180 B
Python

"""
Type definitions
"""
from typing import Union, Tuple, Sequence, Dict, List
layer_t = Union[int, Tuple[int, int], str]
annotations_t = Dict[str, List[Union[int, float, str]]]