Skip to content

Commit

Permalink
Fix import issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jhamon committed Oct 22, 2024
1 parent 2c363ba commit 9b5f1ff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pinecone/grpc/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def _load_plugins(self):
"""@private"""
try:

def stub_openapi_client_builder(**kwargs):
def stub_openapi_client_builder(*args, **kwargs):
pass

install_plugins(self, stub_openapi_client_builder)
Expand Down
2 changes: 2 additions & 0 deletions pinecone/utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
from .parse_args import parse_non_empty_args
from .docslinks import docslinks
from .repr_overrides import install_json_repr_override
from .error_handling import validate_and_convert_errors

__all__ = [
"check_kwargs",
Expand All @@ -23,4 +24,5 @@
"parse_non_empty_args",
"docslinks",
"install_json_repr_override",
"validate_and_convert_errors",
]

0 comments on commit 9b5f1ff

Please sign in to comment.