Skip to content

Commit 47e884f

Browse files
authored
fix(import): namespace collision (#3058)
1 parent 6cbf724 commit 47e884f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bentoml/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,8 @@
112112
)
113113
xgboost = _LazyLoader("bentoml.xgboost", globals(), "bentoml.xgboost")
114114

115-
io = _LazyLoader("io", globals(), "bentoml.io")
116-
models = _LazyLoader("models", globals(), "bentoml.models")
115+
io = _LazyLoader("bentoml.io", globals(), "bentoml.io")
116+
models = _LazyLoader("bentoml.models", globals(), "bentoml.models")
117117

118118
del _LazyLoader
119119

0 commit comments

Comments
 (0)