From 0f481b08e6291970b8e13266bf60b0feb96d2b8b Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Tue, 18 Jun 2024 22:48:58 -0700 Subject: [PATCH] Update mesh-bot.py --- mesh-bot.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mesh-bot.py b/mesh-bot.py index b118f89..7d6b306 100644 --- a/mesh-bot.py +++ b/mesh-bot.py @@ -187,7 +187,8 @@ def get_node_list(): #sort by last heard node_list.sort(key=lambda x: x[1], reverse=True) #return only the last 5 nodes 0 value is the name ignore last heard - node_list = [x[0] for x in node_list[:5]] + #node_list = [x[0] for x in node_list[:5]] + print(node_list) return node_list else: node_list.append("Nothing heard")