Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
sauyon committed Oct 10, 2023
1 parent 646d42d commit 2b20a88
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/bentoml/_internal/client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def wait_until_server_ready(
@staticmethod
def from_url(
server_url: str, *, kind: None | t.Literal["auto"] = ...
) -> GrpcClient | HTTPClient:
) -> Client:
...

@t.overload
Expand Down
4 changes: 2 additions & 2 deletions src/bentoml/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@

from ._internal.bento import Bento
from ._internal.client import Client
from ._internal.client import GrpcClient
from ._internal.client import HTTPClient
from ._internal.client.grpc import GrpcClient
from ._internal.client.http import HTTPClient
from ._internal.configuration.containers import BentoMLContainer
from ._internal.service import Service
from ._internal.tag import Tag
Expand Down

0 comments on commit 2b20a88

Please sign in to comment.