Skip to content

Commit dd82ca7

Browse files
fix pep8
1 parent 7c813c1 commit dd82ca7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/tests/reshape/merge/test_merge.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1535,5 +1535,6 @@ def test_merge_suffix_errors(suffixes):
15351535
a = pd.DataFrame({0: [1, 2, 3]})
15361536
b = pd.DataFrame({0: [4, 5, 6]})
15371537

1538-
with pytest.raises(ValueError, match="columns overlap but no suffix specified"):
1538+
with pytest.raises(ValueError,
1539+
match="columns overlap but no suffix specified"):
15391540
a.merge(b, left_index=True, right_index=True, suffixes=suffixes)

0 commit comments

Comments
 (0)