MibooGram/utils/typedefs.py

18 lines
452 B
Python
Raw Normal View History

from pathlib import Path
from types import TracebackType
2022-09-10 14:46:08 +00:00
from typing import Optional, Tuple, Type, Union, Dict, Any
__all__ = [
'StrOrPath',
2022-09-10 14:46:08 +00:00
'SysExcInfoType', 'ExceptionInfoType',
'JSONDict',
]
StrOrPath = Union[str, Path]
2022-09-10 14:46:08 +00:00
SysExcInfoType = Union[
Tuple[Type[BaseException], BaseException, Optional[TracebackType]],
Tuple[None, None, None]
]
ExceptionInfoType = Union[bool, SysExcInfoType, BaseException]
JSONDict = Dict[str, Any]