Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions pinecone/db_data/index.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
UpsertResponse,
UpdateResponse,
)
from .interfaces import IndexInterface
from .request_factory import IndexRequestFactory
from .types import (
SparseVectorTypedDict,
Expand Down Expand Up @@ -131,7 +130,7 @@ def __getattr__(self, name: str) -> Any:
return getattr(self._apply_result, name)


class Index(PluginAware, IndexInterface):
class Index(PluginAware):
"""
A client for interacting with a Pinecone index via REST API.
For improved performance, use the Pinecone GRPC index client.
Expand Down
Loading
Loading