From 95bd3ea7af825cd1321458c18068d8b06f0ed91d Mon Sep 17 00:00:00 2001 From: Ian McEwen Date: Sun, 31 May 2026 13:53:47 -0700 Subject: [PATCH] pylint strikes again --- meshtastic/tests/test_stream_interface.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meshtastic/tests/test_stream_interface.py b/meshtastic/tests/test_stream_interface.py index abd26a1..97b3de4 100644 --- a/meshtastic/tests/test_stream_interface.py +++ b/meshtastic/tests/test_stream_interface.py @@ -110,6 +110,8 @@ def test_StreamInterface_init_cleanup_does_not_shadow_original_exception(): """ class CleanupRaisesStream(StreamInterface): + """Helper stream that raises during close() to verify exception precedence.""" + def __init__(self): self.stream = MagicMock() super().__init__(noProto=False, connectNow=True)