Загрузить файлы в «venv/Lib/site-packages/pip/_vendor/rich»

This commit is contained in:
2026-07-02 19:34:18 +00:00
parent 96db7968b5
commit ca8ab51631
5 changed files with 375 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
from typing import NamedTuple
class Region(NamedTuple):
"""Defines a rectangular region of the screen."""
x: int
y: int
width: int
height: int