Skip to content

Commit 9af5f22

Browse files
Apply trailing comma suggestions from code review
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 38a13f3 commit 9af5f22

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

meshtastic/mesh_interface.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ def sendText(
448448
onResponse=onResponse,
449449
channelIndex=channelIndex,
450450
replyId=replyId,
451-
hopLimit=hopLimit
451+
hopLimit=hopLimit,
452452
)
453453

454454

@@ -485,7 +485,7 @@ def sendAlert(
485485
onResponse=onResponse,
486486
channelIndex=channelIndex,
487487
priority=mesh_pb2.MeshPacket.Priority.ALERT,
488-
hopLimit=hopLimit
488+
hopLimit=hopLimit,
489489
)
490490

491491
def sendMqttClientProxyMessage(self, topic: str, data: bytes):
@@ -731,7 +731,7 @@ def sendTelemetry(
731731
wantResponse: bool = False,
732732
channelIndex: int = 0,
733733
telemetryType: str = "device_metrics",
734-
hopLimit: Optional[int]=None
734+
hopLimit: Optional[int]=None,
735735
):
736736
"""Send telemetry and optionally ask for a response"""
737737
r = telemetry_pb2.Telemetry()

0 commit comments

Comments
 (0)