Skip to content

Commit 05df736

Browse files
committed
fixing pep8
1 parent 6d0ae9c commit 05df736

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

pandas/tests/reshape/concat/test_concat.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -651,6 +651,5 @@ def test_concat_posargs_deprecation(all_parsers):
651651
)
652652
with tm.assert_produces_warning(FutureWarning, match=msg):
653653
result = concat([df, df2], " ")
654-
expected = DataFrame([[1, 2, 3],[4, 5, 6]], index=["a", "b"])
655-
tm.assert_frame_equal(result, expected)
656-
654+
expected = DataFrame([[1, 2, 3], [4, 5, 6]], index=["a", "b"])
655+
tm.assert_frame_equal(result, expected)

0 commit comments

Comments
 (0)