Skip to content

Commit 45ffc93

Browse files
fix pep8
1 parent 91d67c6 commit 45ffc93

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
@@ -1469,5 +1469,6 @@ def test_merge_suffix_errors(suffixes):
14691469
a = pd.DataFrame({0: [1, 2, 3]})
14701470
b = pd.DataFrame({0: [4, 5, 6]})
14711471

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

0 commit comments

Comments
 (0)