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.4.4, created at 2024-04-20 06:09 +0000

1from __future__ import annotations 

2 

3from typing import NamedTuple 

4 

5__all__ = [ 

6 "Point", 

7 "Size", 

8] 

9 

10 

11class Point(NamedTuple): 

12 x: int 

13 y: int 

14 

15 

16class Size(NamedTuple): 

17 rows: int 

18 columns: int