Skip to content

Commit 7b312ae

Browse files
committed
fix formatting: ruff-format
1 parent 84d7c1f commit 7b312ae

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

pandas/tests/indexes/test_base.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1353,9 +1353,12 @@ def test_index_round(self, decimals, expected_results):
13531353

13541354
def test_string_array_view_type_error(self):
13551355
arr = pd.array(["a", "b", "c"], dtype="string")
1356-
with pytest.raises(TypeError, match="Cannot change data-type for string array."):
1356+
with pytest.raises(
1357+
TypeError, match="Cannot change data-type for string array."
1358+
):
13571359
arr.view("i8")
13581360

1361+
13591362
class TestMixedIntIndex:
13601363
# Mostly the tests from common.py for which the results differ
13611364
# in py2 and py3 because ints and strings are uncomparable in py3

0 commit comments

Comments
 (0)