From 7bdf363ccde5811d696226fd6b2dc937a25deee1 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Tue, 18 Jun 2024 23:34:46 -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 30b642d..9cbc035 100644 --- a/mesh-bot.py +++ b/mesh-bot.py @@ -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)