dupeguru/core/pe/cache.pyi

7 lines
202 B
Python
Raw Normal View History

2022-04-30 05:11:54 -05:00
from typing import Union, Tuple, List
_block = Tuple[int, int, int]
def colors_to_string(colors: List[_block]) -> str: ... # noqa: E302
def string_to_colors(s: str) -> Union[List[_block], None]: ...