Skip to content

Commit

Permalink
fix(import): namespace collision (#3058)
Browse files Browse the repository at this point in the history
  • Loading branch information
aarnphm committed Oct 3, 2022
1 parent 6cbf724 commit 47e884f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bentoml/__init__.py
Expand Up @@ -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

Expand Down

0 comments on commit 47e884f

Please sign in to comment.