Skip to content

Commit 74ff83f

Browse files
author
tyuyoshi
committed
CLN: remove unnecessary space
1 parent fc1eb01 commit 74ff83f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

pandas/tests/reshape/concat/test_concat.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818

1919
import pandas as pd
2020
from pandas import (
21+
CategoricalIndex,
2122
DataFrame,
2223
Index,
23-
CategoricalIndex,
2424
MultiIndex,
2525
PeriodIndex,
2626
Series,
@@ -506,7 +506,7 @@ def test_concat_duplicate_indices_raise(self):
506506
def test_concat_with_categorical_indices(self):
507507
# GH 44099
508508
# concat frames with categorical indices that have the same values
509-
509+
510510
df1 = DataFrame(
511511
{"col1": ["a_val", "b_val", "c_val"]},
512512
index=CategoricalIndex(["a", "b", "c"], categories=["a", "b", "c"]),
@@ -523,6 +523,7 @@ def test_concat_with_categorical_indices(self):
523523
)
524524
tm.assert_frame_equal(concat([df1, df2]), expected)
525525

526+
526527
@pytest.mark.parametrize("pdt", [Series, DataFrame])
527528
@pytest.mark.parametrize("dt", np.sctypes["float"])
528529
def test_concat_no_unnecessary_upcast(dt, pdt):

0 commit comments

Comments
 (0)