mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-10-31 22:05:58 +00:00
f1153c85c0
it's a tiny bit faster and saves a bit of memory
7 lines
204 B
Python
7 lines
204 B
Python
from typing import Union, Tuple, List
|
|
|
|
_block = Tuple[int, int, int]
|
|
|
|
def colors_to_bytes(colors: List[_block]) -> bytes: ... # noqa: E302
|
|
def bytes_to_colors(s: bytes) -> Union[List[_block], None]: ...
|