From 1fd13f98a1675a5d2254b582bf766bc2614b82bd Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Tue, 18 Jun 2024 23:46:04 -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 d8b6a21..882871a 100644 --- a/mesh-bot.py +++ b/mesh-bot.py @@ -193,7 +193,7 @@ def get_node_list(): if node['lastHeard']: last_heard = node['lastHeard'] item = (node_name,last_heard) - node_list.append(item) + node_list += [item] #sort by last heard node_list.sort(key=lambda x: x[1], reverse=True)