From db746a09812cbb248f051b8ef64728a68ef4ee76 Mon Sep 17 00:00:00 2001 From: Ian McEwen Date: Tue, 16 Jun 2026 20:32:38 -0700 Subject: [PATCH] pylint appeasement --- meshtastic/tests/test_node.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meshtastic/tests/test_node.py b/meshtastic/tests/test_node.py index 16f7bde..ce643c1 100644 --- a/meshtastic/tests/test_node.py +++ b/meshtastic/tests/test_node.py @@ -450,7 +450,7 @@ def test_contact_url_roundtrip(node_id, node_data, should_ignore, manually_verif anode = Node(iface, node_num, noProto=True) sent_admin = [] - def capture_send(p, *args, **kwargs): + def capture_send(p, *_args, **_kwargs): sent_admin.append(p) with patch.object(anode, "_sendAdmin", side_effect=capture_send): @@ -557,7 +557,7 @@ def test_contact_url_roundtrip_hypothesis(params): anode = Node(iface, node_num, noProto=True) sent_admin = [] - def capture_send(p, *args, **kwargs): + def capture_send(p, *_args, **_kwargs): sent_admin.append(p) with patch.object(anode, "_sendAdmin", side_effect=capture_send):