From 7d5707890672bf51529949a49a667b164f932d7c Mon Sep 17 00:00:00 2001 From: MindrustUK Date: Thu, 4 May 2023 17:53:41 +0100 Subject: [PATCH] Update 'neohubapi/neohub.py' Removed unneeded enumeration --- neohubapi/neohub.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neohubapi/neohub.py b/neohubapi/neohub.py index 36e1227..c675e28 100644 --- a/neohubapi/neohub.py +++ b/neohubapi/neohub.py @@ -446,7 +446,7 @@ class NeoHub: # Combine the live data and engineers data to produce a full dataset to work from. # Start by working through each device in the devices - for index, device in enumerate(devices): + for device in devices: # Find matching device ID in Engineers data for key, value in eng_hub_data.__dict__.items():