Skip to content

Commit 4233bcd

Browse files
chore(internal): remove unused type var (#915)
1 parent caab767 commit 4233bcd

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/openai/pagination.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
11
# File generated from our OpenAPI spec by Stainless.
22

3-
from typing import Any, List, Generic, TypeVar, Optional, cast
3+
from typing import Any, List, Generic, Optional, cast
44
from typing_extensions import Literal, Protocol, override, runtime_checkable
55

66
from ._types import ModelT
7-
from ._models import BaseModel
87
from ._base_client import BasePage, PageInfo, BaseSyncPage, BaseAsyncPage
98

109
__all__ = ["SyncPage", "AsyncPage", "SyncCursorPage", "AsyncCursorPage"]
1110

12-
_BaseModelT = TypeVar("_BaseModelT", bound=BaseModel)
13-
1411

1512
@runtime_checkable
1613
class CursorPageItem(Protocol):

0 commit comments

Comments
 (0)