Skip to content

Commit 0f6318a

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 978eab1 commit 0f6318a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/test_pytypes.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -467,8 +467,7 @@ def test_issue2361():
467467
assert m.issue2361_str_implicit_copy_none() == "None"
468468
with pytest.raises(TypeError) as excinfo:
469469
assert m.issue2361_dict_implicit_copy_none()
470-
assert ("NoneType" in str(excinfo.value) and
471-
"iterable" in str(excinfo.value))
470+
assert "NoneType" in str(excinfo.value) and "iterable" in str(excinfo.value)
472471

473472

474473
@pytest.mark.parametrize(

0 commit comments

Comments
 (0)