mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-10-31 22:05:58 +00:00
7 lines
202 B
Python
7 lines
202 B
Python
|
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]: ...
|