From 477853fd8c2e3e6952aaa2b151d91cdf36cd755f Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Wed, 19 Jun 2024 15:35:21 -0700 Subject: [PATCH] Update mesh-bot.py --- mesh-bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mesh-bot.py b/mesh-bot.py index dba9269..54b5a25 100644 --- a/mesh-bot.py +++ b/mesh-bot.py @@ -81,7 +81,7 @@ def auto_response(message,snr,rssi,hop,message_from_id): elif "whereami" in message.lower(): location = get_node_location(message_from_id) print (f"Using Reported Location: {location}") - where = where_am_i(str(location[0]),str(location[1])) + where = where_am_i(location[0],location[1]) bot_response = where else: bot_response = "I'm sorry, I'm afraid I can't do that."