鏡像自
https://github.com/arsenetar/dupeguru.git
synced 2025-09-11 17:58:17 +00:00
7 行
202 B
Python
7 行
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]: ...
|