From 424cfc57997933f71908dac4ea331c559764cd8b Mon Sep 17 00:00:00 2001 From: Hugo Osvaldo Barrera Date: Fri, 29 Aug 2025 12:33:54 +0200 Subject: [PATCH] ruff: ignore false positive --- tests/unit/utils/test_vobject.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/utils/test_vobject.py b/tests/unit/utils/test_vobject.py index 616cbb2..4774e14 100644 --- a/tests/unit/utils/test_vobject.py +++ b/tests/unit/utils/test_vobject.py @@ -382,4 +382,4 @@ def test_component_contains(): assert "BAZ" not in item with pytest.raises(ValueError): - 42 in item + 42 in item # noqa: B015, this check raises.