Update 'neohubapi/neohub.py'

Removed unneeded enumeration
This commit is contained in:
MindrustUK 2023-05-04 17:53:41 +01:00
parent 3ad3a73bb8
commit 7d57078906
1 changed files with 1 additions and 1 deletions

View File

@ -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():