Skip to content

Commit ab1dc98

Browse files
author
Matt Roeschke
committed
Remove unused imports
1 parent 6780704 commit ab1dc98

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

sklearn/linear_model/huber.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
import numpy as np
55

6-
from scipy import optimize, sparse
6+
from scipy import optimize
77

88
from ..base import BaseEstimator, RegressorMixin
99
from .base import LinearModel

sklearn/utils/estimator_checks.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,7 @@
4141

4242

4343
from sklearn.base import (clone, ClusterMixin,
44-
BaseEstimator, is_classifier, is_regressor,
45-
is_outlier_detector)
44+
is_classifier, is_regressor, is_outlier_detector)
4645

4746
from sklearn.metrics import accuracy_score, adjusted_rand_score, f1_score
4847

0 commit comments

Comments
 (0)