Skip to content

Commit fc1eb01

Browse files
author
tyuyoshi
committed
CLN: Modify for pre-commit
1 parent d802962 commit fc1eb01

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pandas/tests/reshape/concat/test_concat.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,9 @@ def test_concat_with_categorical_indices(self):
517517
)
518518
expected = DataFrame(
519519
{"col1": ["a_val", "b_val", "c_val", "b_val", "a_val", "c_val"]},
520-
index=CategoricalIndex(["a", "b", "c", "b", "a", "c"], categories=["a", "b", "c"]),
520+
index=CategoricalIndex(
521+
["a", "b", "c", "b", "a", "c"], categories=["a", "b", "c"]
522+
),
521523
)
522524
tm.assert_frame_equal(concat([df1, df2]), expected)
523525

0 commit comments

Comments
 (0)