removed testing print

This commit is contained in:
2026-05-15 10:26:38 +10:00
parent 6f8083fdc2
commit 9a072bacf9

View File

@@ -67,7 +67,6 @@ class LoRaHandler:
def send(self, data: bytes, recipient_id: str):
msg_bytes = LoRaMessage(sender_id=self.sender_id, recipient_id=recipient_id, payload=data).encode()
print(msg_bytes)
self.radio.send(msg_bytes)
def forward(self, msg: LoRaMessage):