100-Days-Of-Code/lib/python3.12/site-packages/pip/_vendor/rich/region.py
2024-12-24 09:47:04 +05:30

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