Skip to content

Commit 64bb668

Browse files
authored
Fix line too long
1 parent 775108b commit 64bb668

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

meshtastic/mesh_interface.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,13 @@ def onResponseTelemetry(self, p: dict):
566566
def _addResponseHandler(self, requestId: int, callback: Callable[[dict], Any], ackPermitted: bool=False):
567567
self.responseHandlers[requestId] = ResponseHandler(callback=callback, ackPermitted=ackPermitted)
568568

569-
def _sendPacket(self, meshPacket: mesh_pb2.MeshPacket, destinationId: Union[int,str]=BROADCAST_ADDR, wantAck: bool=False, hopLimit: Optional[int]=None):
569+
def _sendPacket(
570+
self,
571+
meshPacket: mesh_pb2.MeshPacket,
572+
destinationId: Union[int,str]=BROADCAST_ADDR,
573+
wantAck: bool=False,
574+
hopLimit: Optional[int]=None
575+
):
570576
"""Send a MeshPacket to the specified node (or if unspecified, broadcast).
571577
You probably don't want this - use sendData instead.
572578

0 commit comments

Comments
 (0)