Vehicle-Anti-Theft-Face-Rec.../venv/Lib/site-packages/prompt_toolkit/data_structures.py

11 lines
187 B
Python
Raw Normal View History

2020-11-12 16:05:57 +00:00
from typing import NamedTuple
__all__ = [
"Point",
"Size",
]
Point = NamedTuple("Point", [("x", int), ("y", int)])
Size = NamedTuple("Size", [("rows", int), ("columns", int)])