Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.9/dist-packages/prompt_toolkit/data_structures.py: 100%
9 statements
« prev ^ index » next coverage.py v7.3.1, created at 2023-09-25 06:05 +0000
« prev ^ index » next coverage.py v7.3.1, created at 2023-09-25 06:05 +0000
1from __future__ import annotations
3from typing import NamedTuple
5__all__ = [
6 "Point",
7 "Size",
8]
11class Point(NamedTuple):
12 x: int
13 y: int
16class Size(NamedTuple):
17 rows: int
18 columns: int