Skip to content

Commit

Permalink
FIX-#2606: Apply suggestion related to new location
Browse files Browse the repository at this point in the history
Signed-off-by: Igoshev, Yaroslav <yaroslav.igoshev@intel.com>
  • Loading branch information
YarShev committed Jan 26, 2021
1 parent b89f54c commit 954cbe4
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
# ANY KIND, either express or implied. See the License for the specific language
# governing permissions and limitations under the License.

from .dataframe import unwrap_partitions, from_partitions
from .partitions import unwrap_partitions, from_partitions

__all__ = ["unwrap_partitions", "from_partitions"]
File renamed without changes.
2 changes: 1 addition & 1 deletion modin/experimental/xgboost/xgboost_ray.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import numpy as np
import pandas

from modin.api.pandas import unwrap_partitions
from modin.distributed.dataframe.pandas import unwrap_partitions
from .utils import RabitContext, RabitContextManager

LOGGER = logging.getLogger("[modin.xgboost]")
Expand Down
2 changes: 1 addition & 1 deletion modin/test/test_partition_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import pytest

import modin.pandas as pd
from modin.api.pandas import unwrap_partitions, from_partitions
from modin.distributed.dataframe.pandas import unwrap_partitions, from_partitions
from modin.config import Engine, NPartitions
from modin.pandas.test.utils import df_equals

Expand Down

0 comments on commit 954cbe4

Please sign in to comment.