File: cache.pyi

package info (click to toggle)
dupeguru 4.3.1-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,604 kB
  • sloc: python: 16,846; ansic: 424; makefile: 123
file content (6 lines) | stat: -rw-r--r-- 202 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
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]: ...