jamtur01's picture
Upload folder using huggingface_hub
9c6594c verified
raw
history blame contribute delete
166 Bytes
from typing import NamedTuple
class Region(NamedTuple):
"""Defines a rectangular region of the screen."""
x: int
y: int
width: int
height: int