Skip to content

Commit 7afd0d0

Browse files
committed
Fix line length issue in test_setops.py
1 parent 5be6ef4 commit 7afd0d0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/tests/indexes/test_setops.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,8 @@ def test_union_different_types(index_flat, index_flat2, request):
7676
idx2 = index_flat2
7777

7878
# Special handling for mixed int-string types
79-
if idx1.equals(pd.Index([0, "a", 1, "b", 2, "c"])) or idx2.equals(pd.Index([0, "a", 1, "b", 2, "c"])):
79+
if idx1.equals(pd.Index([0, "a", 1, "b", 2, "c"])) or \
80+
idx2.equals(pd.Index([0, "a", 1, "b", 2, "c"])):
8081
idx1 = idx1.astype(str)
8182
idx2 = idx2.astype(str)
8283

0 commit comments

Comments
 (0)