Coverage for src/pytest_samples/types.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.4.2, created at 2024-02-20 19:47 +0000

1"""This module contains typing utilities.""" 

2 

3from typing import Optional as _Optional, Tuple as _Tuple 

4 

5 

6Location = _Tuple[str, _Optional[int], str] 

7"""The type of the location of a test."""