Skip to content

Commit

Permalink
PEP8 (#718)
Browse files Browse the repository at this point in the history
  • Loading branch information
mfeurer authored Aug 30, 2019
1 parent 10c6b30 commit 049288e
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions test/test_metalearning/pyMetaLearn/test_meta_features_sparse.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@
# Make the super class importable
sys.path.append(os.path.dirname(__file__))

import arff
import numpy as np
from scipy import sparse
from sklearn.impute import SimpleImputer
import arff # noqa: E402
import numpy as np # noqa: E402
from scipy import sparse # noqa: E402
from sklearn.impute import SimpleImputer # noqa: E402

from autosklearn.pipeline.implementations.OneHotEncoder import OneHotEncoder
from sklearn.preprocessing import StandardScaler
from autosklearn.pipeline.implementations.OneHotEncoder import OneHotEncoder # noqa: E402
from sklearn.preprocessing import StandardScaler # noqa: E402

import autosklearn.metalearning.metafeatures.metafeatures as meta_features
import test_meta_features
import autosklearn.metalearning.metafeatures.metafeatures as meta_features # noqa: E402
import test_meta_features # noqa: E402


class SparseMetaFeaturesTest(test_meta_features.MetaFeaturesTest,
Expand Down

0 comments on commit 049288e

Please sign in to comment.