Skip to content

Commit

Permalink
Fix: imports from relative to absolute (#1370)
Browse files Browse the repository at this point in the history
  • Loading branch information
eddiebergman committed Jan 25, 2022
1 parent 2864699 commit df94d67
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion test/test_pipeline/components/classification/test_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import sklearn.metrics
import numpy as np

from ...ignored_warnings import ignore_warnings, classifier_warnings
from test.test_pipeline.ignored_warnings import ignore_warnings, classifier_warnings


class BaseClassificationComponentTest(unittest.TestCase):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
get_dataset
import sklearn.metrics

from ...ignored_warnings import ignore_warnings, feature_preprocessing_warnings
from test.test_pipeline.ignored_warnings import ignore_warnings, feature_preprocessing_warnings


class LiblinearComponentTest(PreprocessingTestCase):
Expand Down
2 changes: 1 addition & 1 deletion test/test_pipeline/components/regression/test_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

from autosklearn.pipeline.components.regression import _regressors, RegressorChoice

from ...ignored_warnings import regressor_warnings, ignore_warnings
from test.test_pipeline.ignored_warnings import regressor_warnings, ignore_warnings


class BaseRegressionComponentTest(unittest.TestCase):
Expand Down
2 changes: 1 addition & 1 deletion test/test_pipeline/test_classification.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
from autosklearn.pipeline.constants import \
DENSE, SPARSE, UNSIGNED_DATA, PREDICTIONS, SIGNED_DATA, INPUT

from .ignored_warnings import classifier_warnings, ignore_warnings
from test.test_pipeline.ignored_warnings import classifier_warnings, ignore_warnings


class DummyClassifier(AutoSklearnClassificationAlgorithm):
Expand Down
2 changes: 1 addition & 1 deletion test/test_pipeline/test_regression.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
from autosklearn.pipeline.util import get_dataset
from autosklearn.pipeline.constants import SPARSE, DENSE, SIGNED_DATA, UNSIGNED_DATA, PREDICTIONS

from .ignored_warnings import regressor_warnings, ignore_warnings
from test.test_pipeline.ignored_warnings import regressor_warnings, ignore_warnings


class SimpleRegressionPipelineTest(unittest.TestCase):
Expand Down

0 comments on commit df94d67

Please sign in to comment.