Skip to content

Commit b5b3184

Browse files
committed
hot fix
1 parent a327ef8 commit b5b3184

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

mambular/models/sklearn_base_classifier.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ def fit(
316316
self : object
317317
The fitted classifier.
318318
"""
319-
if not self.built and not rebuild:
319+
if rebuild:
320320
if not isinstance(X, pd.DataFrame):
321321
X = pd.DataFrame(X)
322322
if isinstance(y, pd.Series):

0 commit comments

Comments
 (0)