microproduct/atmosphericDelay-s1a/ISCEApp/site-packages/prompt_toolkit/data_structures.py

11 lines
187 B
Python
Raw Normal View History

2024-12-18 03:03:53 +00:00
from typing import NamedTuple
__all__ = [
"Point",
"Size",
]
Point = NamedTuple("Point", [("x", int), ("y", int)])
Size = NamedTuple("Size", [("rows", int), ("columns", int)])