From e8e90c3c6d0b1910b29ed751965db10e690639cd Mon Sep 17 00:00:00 2001 From: Stainless Bot Date: Fri, 1 Dec 2023 15:10:36 +0000 Subject: [PATCH] chore(internal): remove unused type var --- src/openai/pagination.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/openai/pagination.py b/src/openai/pagination.py index 4ec300f2d1..17f2d1a4ca 100644 --- a/src/openai/pagination.py +++ b/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):