Skip to content

Commit db746a0

Browse files
committed
pylint appeasement
1 parent 13b8cdc commit db746a0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

meshtastic/tests/test_node.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ def test_contact_url_roundtrip(node_id, node_data, should_ignore, manually_verif
450450
anode = Node(iface, node_num, noProto=True)
451451

452452
sent_admin = []
453-
def capture_send(p, *args, **kwargs):
453+
def capture_send(p, *_args, **_kwargs):
454454
sent_admin.append(p)
455455

456456
with patch.object(anode, "_sendAdmin", side_effect=capture_send):
@@ -557,7 +557,7 @@ def test_contact_url_roundtrip_hypothesis(params):
557557
anode = Node(iface, node_num, noProto=True)
558558

559559
sent_admin = []
560-
def capture_send(p, *args, **kwargs):
560+
def capture_send(p, *_args, **_kwargs):
561561
sent_admin.append(p)
562562

563563
with patch.object(anode, "_sendAdmin", side_effect=capture_send):

0 commit comments

Comments
 (0)