Coverage for notion_client/typing.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.6.10, created at 2025-01-15 10:21 +0000

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

2from typing import Awaitable, TypeVar, Union 

3 

4T = TypeVar("T") 

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