Coverage for src/sensai/util/typing.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.6.1, created at 2024-08-13 22:17 +0000

1from typing import NamedTuple, Union 

2 

3 

4class PandasNamedTuple(NamedTuple): 

5 """ 

6 This class is used for type annotations only 

7 """ 

8 Index: Union[int, str]