Update mesh-bot.py

This commit is contained in:
SpudGunMan
2024-06-18 23:46:04 -07:00
parent fca2f9f000
commit 1fd13f98a1
+1 -1
View File
@@ -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)