Update mesh-bot.py

This commit is contained in:
SpudGunMan
2024-06-18 23:34:46 -07:00
parent eb6b685969
commit 7bdf363ccd
+2 -1
View File
@@ -191,7 +191,8 @@ def get_node_list():
node_name = get_name_from_number(node['num'])
if node['lastHeard']:
last_heard = node['lastHeard']
node_list.append((node_name,last_heard))
item = (node_name,last_heard)
node_list.append(item)
print (node_list)