From 6511d06e2f314cd36f71f77147df03f79960ddd4 Mon Sep 17 00:00:00 2001 From: Ian McEwen Date: Mon, 2 Mar 2026 09:56:44 -0700 Subject: [PATCH] Apply suggestion from @ianmcorvidae --- meshtastic/tests/test_node.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshtastic/tests/test_node.py b/meshtastic/tests/test_node.py index 7dc09b6..49a4053 100644 --- a/meshtastic/tests/test_node.py +++ b/meshtastic/tests/test_node.py @@ -805,7 +805,7 @@ def test_writeConfig_traffic_management(): sent_admin = [] - def capture_send(p, *args, **kwargs): + def capture_send(p, *args, **kwargs): # pylint: disable=W0613 sent_admin.append(p) with patch.object(anode, "_sendAdmin", side_effect=capture_send):