Commit 4d9ece0e

Stainless Bot <107565488+stainless-bot@users.noreply.github.com>
2023-12-01 23:10:40
chore(internal): remove unused type var (#915)
1 parent 104e5a5
Changed files (1)
src
src/openai/pagination.py
@@ -1,16 +1,13 @@
 # File generated from our OpenAPI spec by Stainless.
 
-from typing import Any, List, Generic, TypeVar, Optional, cast
+from typing import Any, List, Generic, Optional, cast
 from typing_extensions import Literal, Protocol, override, runtime_checkable
 
 from ._types import ModelT
-from ._models import BaseModel
 from ._base_client import BasePage, PageInfo, BaseSyncPage, BaseAsyncPage
 
 __all__ = ["SyncPage", "AsyncPage", "SyncCursorPage", "AsyncCursorPage"]
 
-_BaseModelT = TypeVar("_BaseModelT", bound=BaseModel)
-
 
 @runtime_checkable
 class CursorPageItem(Protocol):