Coverage for notion_client/typing.py: 100%

3 statements  

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

1"""Custom type definitions for notion-sdk-py.""" 

2from typing import Awaitable, TypeVar, Union 

3 

4T = TypeVar("T") 

5SyncAsync = Union[T, Awaitable[T]]