Files
server/usr/lib/python3/dist-packages/rich/region.py
2026-01-07 20:52:11 +01: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