Skip to content

Commit

Permalink
chore(internal): remove unused type var (#915)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-bot committed Dec 1, 2023
1 parent caab767 commit 4233bcd
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/openai/pagination.py
Original file line number Diff line number Diff line change
@@ -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):
Expand Down

0 comments on commit 4233bcd

Please sign in to comment.