mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-10-31 22:05:58 +00:00
8 lines
248 B
Python
8 lines
248 B
Python
|
from typing import Tuple, List, Union
|
||
|
from PyQt5.QtGui import QImage
|
||
|
|
||
|
_block = Tuple[int, int, int]
|
||
|
|
||
|
def getblock(image: QImage) -> _block: ... # noqa: E302
|
||
|
def getblocks(image: QImage, block_count_per_side: int) -> Union[List[_block], None]: ...
|