Source code for sensai.util.typing
from typing import NamedTuple, Union
[docs]class PandasNamedTuple(NamedTuple):
"""
This class is used for type annotations only
"""
Index: Union[int, str]
from typing import NamedTuple, Union
[docs]class PandasNamedTuple(NamedTuple):
"""
This class is used for type annotations only
"""
Index: Union[int, str]