Skip to content

Commit

Permalink
Remove unecessary import
Browse files Browse the repository at this point in the history
  • Loading branch information
Guillaume Lemaitre committed Jun 24, 2016
1 parent 5c0d42f commit c02db3d
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
"""

print(__doc__)
import numpy as np

import matplotlib.pyplot as plt
import seaborn as sns
Expand Down
2 changes: 1 addition & 1 deletion unbalanced_dataset/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
Module which provides helper methods.
"""

from .version import _check_module_dependencies, __version__
from .version import _check_module_dependencies

_check_module_dependencies()

Expand Down
2 changes: 1 addition & 1 deletion unbalanced_dataset/base_sampler.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

from collections import Counter

from sklearn.base import BaseEstimator, TransformerMixin
from sklearn.base import BaseEstimator
from sklearn.utils import check_X_y
from sklearn.externals import six

Expand Down
1 change: 0 additions & 1 deletion unbalanced_dataset/over_sampling/smote.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

from sklearn.utils import check_X_y
from sklearn.utils import check_array
from sklearn.neighbors import LSHForest
from sklearn.neighbors import NearestNeighbors
from sklearn.svm import SVC

Expand Down

0 comments on commit c02db3d

Please sign in to comment.