From 132516ff8d97e0a5b5d674057b6d439e195d8fe5 Mon Sep 17 00:00:00 2001 From: Aaron Pham <29749331+aarnphm@users.noreply.github.com> Date: Thu, 29 Sep 2022 13:53:48 -0700 Subject: [PATCH] chore(lint): remove unused import (#3051) Signed-off-by: Aaron Pham <29749331+aarnphm@users.noreply.github.com> --- bentoml/serve.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/bentoml/serve.py b/bentoml/serve.py index 7105ad1ae31..3a1600b0e54 100644 --- a/bentoml/serve.py +++ b/bentoml/serve.py @@ -303,7 +303,6 @@ def serve_http_production( from bentoml import load from ._internal.utils import reserve_free_port - from ._internal.resource import CpuResource from ._internal.utils.uri import path_to_uri from ._internal.utils.circus import create_standalone_arbiter from ._internal.utils.analytics import track_serve @@ -659,7 +658,6 @@ def serve_grpc_production( from bentoml.exceptions import UnprocessableEntity from ._internal.utils import reserve_free_port - from ._internal.resource import CpuResource from ._internal.utils.uri import path_to_uri from ._internal.utils.circus import create_standalone_arbiter from ._internal.utils.analytics import track_serve