From 9af5f2283748035a29abbd52c0d6aa3efe584213 Mon Sep 17 00:00:00 2001 From: Ian McEwen Date: Mon, 2 Mar 2026 10:10:52 -0700 Subject: [PATCH] Apply trailing comma suggestions from code review Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- meshtastic/mesh_interface.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meshtastic/mesh_interface.py b/meshtastic/mesh_interface.py index 1ae4b55..e0b6e43 100644 --- a/meshtastic/mesh_interface.py +++ b/meshtastic/mesh_interface.py @@ -448,7 +448,7 @@ class MeshInterface: # pylint: disable=R0902 onResponse=onResponse, channelIndex=channelIndex, replyId=replyId, - hopLimit=hopLimit + hopLimit=hopLimit, ) @@ -485,7 +485,7 @@ class MeshInterface: # pylint: disable=R0902 onResponse=onResponse, channelIndex=channelIndex, priority=mesh_pb2.MeshPacket.Priority.ALERT, - hopLimit=hopLimit + hopLimit=hopLimit, ) def sendMqttClientProxyMessage(self, topic: str, data: bytes): @@ -731,7 +731,7 @@ class MeshInterface: # pylint: disable=R0902 wantResponse: bool = False, channelIndex: int = 0, telemetryType: str = "device_metrics", - hopLimit: Optional[int]=None + hopLimit: Optional[int]=None, ): """Send telemetry and optionally ask for a response""" r = telemetry_pb2.Telemetry()