Skip to content

Commit a76cdb6

Browse files
TEST-#7431: Fix formatting for isort 6 and black 25 (#7432)
Signed-off-by: sfc-gh-mvashishtha <[email protected]>
1 parent 02515bb commit a76cdb6

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

modin/core/dataframe/pandas/metadata/dtypes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1191,7 +1191,7 @@ def _materialize_categories(self):
11911191

11921192

11931193
def get_categories_dtype(
1194-
cdt: Union[LazyProxyCategoricalDtype, pandas.CategoricalDtype]
1194+
cdt: Union[LazyProxyCategoricalDtype, pandas.CategoricalDtype],
11951195
) -> DtypeObj:
11961196
"""
11971197
Get the categories dtype.

modin/pandas/io.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1133,7 +1133,7 @@ def to_pandas(modin_obj: SupportsPublicToPandas) -> DataFrame | Series:
11331133

11341134

11351135
def to_numpy(
1136-
modin_obj: Union[SupportsPrivateToNumPy, SupportsPublicToNumPy]
1136+
modin_obj: Union[SupportsPrivateToNumPy, SupportsPublicToNumPy],
11371137
) -> np.ndarray:
11381138
"""
11391139
Convert a Modin object to a NumPy array.

modin/tests/pandas/test_io.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,9 @@
6969
parse_dates_values_by_id,
7070
)
7171
from .utils import test_data as utils_test_data
72-
from .utils import time_parsing_csv_path
72+
from .utils import (
73+
time_parsing_csv_path,
74+
)
7375

7476
if StorageFormat.get() == "Pandas":
7577
import modin.pandas as pd

0 commit comments

Comments
 (0)