From c9f1a9a89f1cac17f3fe374d7661e8e3b56a88de Mon Sep 17 00:00:00 2001 From: Chris Markiewicz Date: Tue, 8 Oct 2024 11:14:09 -0400 Subject: [PATCH] STY: ruff check --fix --- nibabel/tests/test_tripwire.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nibabel/tests/test_tripwire.py b/nibabel/tests/test_tripwire.py index d7daefe0b..4bf91923f 100644 --- a/nibabel/tests/test_tripwire.py +++ b/nibabel/tests/test_tripwire.py @@ -16,5 +16,5 @@ def test_tripwire(): with pytest.raises(TripWireError): silly_module_name.do_silly_thing # Check AttributeError can be checked too - with pytest.raises(AttributeError) as err: + with pytest.raises(AttributeError): silly_module_name.__wrapped__