mirror of
https://github.com/morpheus65535/bazarr.git
synced 2024-11-10 17:13:35 +08:00
4a0932b5d3
* Update ffsubsync to 0.4.11 * Update srt to 3.4.1
10 lines
166 B
Python
10 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
|