From 639e8b850402de1056b8e1c0d0092bb1a484fc03 Mon Sep 17 00:00:00 2001 From: Aaron Pham <29749331+aarnphm@users.noreply.github.com> Date: Sun, 2 Oct 2022 17:08:25 -0700 Subject: [PATCH] fix(import): namespace collision Signed-off-by: Aaron Pham <29749331+aarnphm@users.noreply.github.com> --- bentoml/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bentoml/__init__.py b/bentoml/__init__.py index ee9727b0bc..fcdf83338b 100644 --- a/bentoml/__init__.py +++ b/bentoml/__init__.py @@ -112,8 +112,8 @@ ) xgboost = _LazyLoader("bentoml.xgboost", globals(), "bentoml.xgboost") - io = _LazyLoader("io", globals(), "bentoml.io") - models = _LazyLoader("models", globals(), "bentoml.models") + io = _LazyLoader("bentoml.io", globals(), "bentoml.io") + models = _LazyLoader("bentoml.models", globals(), "bentoml.models") del _LazyLoader