meshtastic

- Unnamed repository; edit this file 'description' to name the repository.
git clone git://git.acid.vegas/-c.git
Log | Files | Refs | Archive | README | LICENSE

commit b8404bcd0c69891e98ef793e65e1e9184f1013c3
parent 337c7018354c98de92cbbcc77179a4c9ffc8f669
Author: acidvegas <acid.vegas@acid.vegas>
Date: Mon, 6 May 2024 22:35:42 -0400

Fixed indentation (fuck vscode)

Diffstat:
Mmeshmqtt.py | 8++++----

1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/meshmqtt.py b/meshmqtt.py
@@ -64,11 +64,11 @@ def decode_encrypted(message_packet):
 			}
 			logging.info('Received text message:')
 			logging.info(text)
-   
+
 		elif message_packet.decoded.portnum == portnums_pb2.MAP_REPORT_APP:
-            pos = mesh_pb2.Position()
-            pos.ParseFromString(message_packet.decoded.payload)
-            logging.info('Received map report:')
+			pos = mesh_pb2.Position()
+			pos.ParseFromString(message_packet.decoded.payload)
+			logging.info('Received map report:')
 			logging.info(pos)
 
 		elif message_packet.decoded.portnum == portnums_pb2.NODEINFO_APP: