From c55eb156b88aa6d849a60bcd3a680fe3c20b53e1 Mon Sep 17 00:00:00 2001 From: Ievgen Bondarenko Date: Fri, 24 Apr 2026 00:06:56 -0700 Subject: [PATCH] sdp: fix lint formatting (black: blank line after import pytest) --- tests/sdp_test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/sdp_test.py b/tests/sdp_test.py index 0acbf4b..a8d62a0 100644 --- a/tests/sdp_test.py +++ b/tests/sdp_test.py @@ -462,6 +462,7 @@ def test_nested_sequence_recursion_guard(): inner = bytes([0x36, (size >> 8) & 0xFF, size & 0xFF]) + inner import pytest + with pytest.raises(ValueError, match="nesting exceeds max depth"): DataElement.from_bytes(inner)