Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
Signed-off-by: Anatoly Myachev <anatoly.myachev@intel.com>
  • Loading branch information
anmyachev committed Apr 17, 2024
1 parent 409e6d7 commit 0ab5ef7
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion modin/tests/dataframe_api_standard/column/fill_nan_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@

import pytest

from modin.pandas.test.utils import default_to_pandas_ignore_string
from modin.tests.dataframe_api_standard.utils import (
BaseHandler,
compare_column_with_reference,
nan_dataframe_1,
)
from modin.tests.pandas.utils import default_to_pandas_ignore_string

pytestmark = pytest.mark.filterwarnings(default_to_pandas_ignore_string)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@
from __future__ import annotations

import modin.pandas as pd
from modin.pandas.test.utils import df_equals
from modin.tests.dataframe_api_standard.utils import (
BaseHandler,
compare_column_with_reference,
integer_dataframe_1,
)
from modin.tests.pandas.utils import df_equals


def test_column_filter(library: BaseHandler) -> None:
Expand Down
2 changes: 1 addition & 1 deletion modin/tests/dataframe_api_standard/column/shift_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@
import pandas as pd
import pytest

from modin.pandas.test.utils import default_to_pandas_ignore_string
from modin.tests.dataframe_api_standard.utils import (
BaseHandler,
compare_dataframe_with_reference,
float_dataframe_1,
integer_dataframe_1,
)
from modin.tests.pandas.utils import default_to_pandas_ignore_string

pytestmark = pytest.mark.filterwarnings(default_to_pandas_ignore_string)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@
import pytest

import modin.pandas as pd
from modin.pandas.test.utils import df_equals
from modin.tests.dataframe_api_standard.utils import BaseHandler, integer_dataframe_3
from modin.tests.pandas.utils import df_equals


@pytest.mark.parametrize(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@

import pytest

from modin.pandas.test.utils import default_to_pandas_ignore_string
from modin.tests.dataframe_api_standard.utils import (
BaseHandler,
compare_column_with_reference,
temporal_dataframe_1,
)
from modin.tests.pandas.utils import default_to_pandas_ignore_string

pytestmark = pytest.mark.filterwarnings(default_to_pandas_ignore_string)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@

import pytest

from modin.pandas.test.utils import default_to_pandas_ignore_string
from modin.tests.dataframe_api_standard.utils import (
BaseHandler,
compare_dataframe_with_reference,
integer_dataframe_1,
)
from modin.tests.pandas.utils import default_to_pandas_ignore_string

pytestmark = pytest.mark.filterwarnings(default_to_pandas_ignore_string)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@

import pytest

from modin.pandas.test.utils import default_to_pandas_ignore_string
from modin.tests.dataframe_api_standard.utils import (
BaseHandler,
compare_dataframe_with_reference,
nan_dataframe_1,
)
from modin.tests.pandas.utils import default_to_pandas_ignore_string

pytestmark = pytest.mark.filterwarnings(default_to_pandas_ignore_string)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@

import pytest

from modin.pandas.test.utils import default_to_pandas_ignore_string
from modin.tests.dataframe_api_standard.utils import (
BaseHandler,
nan_dataframe_1,
null_dataframe_2,
)
from modin.tests.pandas.utils import default_to_pandas_ignore_string

pytestmark = pytest.mark.filterwarnings(default_to_pandas_ignore_string)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@

import pytest

from modin.pandas.test.utils import default_to_pandas_ignore_string
from modin.tests.dataframe_api_standard.utils import (
BaseHandler,
compare_dataframe_with_reference,
integer_dataframe_1,
)
from modin.tests.pandas.utils import default_to_pandas_ignore_string

pytestmark = pytest.mark.filterwarnings(default_to_pandas_ignore_string)

Expand Down
2 changes: 1 addition & 1 deletion modin/tests/dataframe_api_standard/dataframe/join_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@

import pytest

from modin.pandas.test.utils import default_to_pandas_ignore_string
from modin.tests.dataframe_api_standard.utils import (
BaseHandler,
compare_dataframe_with_reference,
integer_dataframe_1,
integer_dataframe_2,
)
from modin.tests.pandas.utils import default_to_pandas_ignore_string

pytestmark = pytest.mark.filterwarnings(default_to_pandas_ignore_string)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@

import pytest

from modin.pandas.test.utils import default_to_pandas_ignore_string
from modin.tests.dataframe_api_standard.utils import (
BaseHandler,
compare_dataframe_with_reference,
integer_dataframe_1,
)
from modin.tests.pandas.utils import default_to_pandas_ignore_string

pytestmark = pytest.mark.filterwarnings(default_to_pandas_ignore_string)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
from __future__ import annotations

import modin.pandas as pd
from modin.pandas.test.utils import df_equals
from modin.tests.pandas.utils import df_equals


def test_scale_column_modin() -> None:
Expand Down

0 comments on commit 0ab5ef7

Please sign in to comment.