Skip to content

Commit 916cf0c

Browse files
Update _booster_classifier.py
1 parent 6db8015 commit 916cf0c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

mlsauce/booster/_booster_classifier.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@
55
from sklearn.base import ClassifierMixin
66

77
import pyximport; pyximport.install()
8-
from . import _boosterc as boosterc
8+
try:
9+
from . import _boosterc as boosterc
10+
except ImportError:
11+
pass
912

1013
from ..utils import cluster
1114

0 commit comments

Comments
 (0)