Coverage for notion_client/typing.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.11.0, created at 2025-11-04 09:02 +0000

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

2 

3from typing import Awaitable, TypeVar, Union 

4 

5T = TypeVar("T") 

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