Skip to content

Commit

Permalink
Update hub_client.py for single API call (#205)
Browse files Browse the repository at this point in the history
  • Loading branch information
glenn-jocher authored Sep 25, 2024
1 parent 65c8ec2 commit 82da10d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion hub_sdk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
from hub_sdk.config import HUB_API_ROOT, HUB_WEB_ROOT
from hub_sdk.hub_client import HUBClient

__version__ = "0.0.11"
__version__ = "0.0.12"
__all__ = "__version__", "HUBClient", "HUB_API_ROOT", "HUB_WEB_ROOT"
1 change: 0 additions & 1 deletion hub_sdk/hub_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ def login(self, api_key=None, id_token=None, email=None, password=None):
):
self.authenticated = True

@require_authentication
def model(self, model_id: Optional[str] = None) -> Models:
"""
Returns an instance of the Models class for interacting with models.
Expand Down

0 comments on commit 82da10d

Please sign in to comment.