This repository has been archived on 2024-09-30. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
hook-frida/venv/Lib/site-packages/pip/_vendor/rich/region.py
2023-08-12 16:46:30 +08:00

11 lines
166 B
Python

from typing import NamedTuple
class Region(NamedTuple):
"""Defines a rectangular region of the screen."""
x: int
y: int
width: int
height: int