Skip to content

Commit

Permalink
TEST-#7431: Fix formatting for isort 6 and black 25 (#7432)
Browse files Browse the repository at this point in the history
Signed-off-by: sfc-gh-mvashishtha <[email protected]>
  • Loading branch information
sfc-gh-mvashishtha authored Jan 30, 2025
1 parent 02515bb commit a76cdb6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion modin/core/dataframe/pandas/metadata/dtypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -1191,7 +1191,7 @@ def _materialize_categories(self):


def get_categories_dtype(
cdt: Union[LazyProxyCategoricalDtype, pandas.CategoricalDtype]
cdt: Union[LazyProxyCategoricalDtype, pandas.CategoricalDtype],
) -> DtypeObj:
"""
Get the categories dtype.
Expand Down
2 changes: 1 addition & 1 deletion modin/pandas/io.py
Original file line number Diff line number Diff line change
Expand Up @@ -1133,7 +1133,7 @@ def to_pandas(modin_obj: SupportsPublicToPandas) -> DataFrame | Series:


def to_numpy(
modin_obj: Union[SupportsPrivateToNumPy, SupportsPublicToNumPy]
modin_obj: Union[SupportsPrivateToNumPy, SupportsPublicToNumPy],
) -> np.ndarray:
"""
Convert a Modin object to a NumPy array.
Expand Down
4 changes: 3 additions & 1 deletion modin/tests/pandas/test_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,9 @@
parse_dates_values_by_id,
)
from .utils import test_data as utils_test_data
from .utils import time_parsing_csv_path
from .utils import (
time_parsing_csv_path,
)

if StorageFormat.get() == "Pandas":
import modin.pandas as pd
Expand Down

0 comments on commit a76cdb6

Please sign in to comment.