Skip to content

Commit 8856592

Browse files
committed
Fix line length issue in test_numpy_compat.py
1 parent 1913ff8 commit 8856592

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/tests/indexes/test_numpy_compat.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,8 @@ def test_numpy_ufuncs_reductions(index, func, request):
156156
if len(index) == 0:
157157
pytest.skip("Test doesn't make sense for empty index.")
158158

159-
if any(isinstance(x, str) for x in index) and any(isinstance(x, int) for x in index):
159+
if any(isinstance(x, str) for x in index) and \
160+
any(isinstance(x, int) for x in index):
160161
request.applymarker(
161162
pytest.mark.xfail(reason="Cannot compare mixed types (int and str) in ufunc reductions")
162163
)

0 commit comments

Comments
 (0)