Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/prompt_toolkit/data_structures.py: 100%
9 statements
« prev ^ index » next coverage.py v7.2.2, created at 2023-03-26 06:07 +0000
« prev ^ index » next coverage.py v7.2.2, created at 2023-03-26 06:07 +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