Removed debugging wait time

This commit is contained in:
duffbeer2000
2019-12-15 14:02:57 +01:00
parent d0ad618a2b
commit e69889ed8e
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -48,7 +48,7 @@ response = json.loads(response.content)
productlist = response['products']
for x in range(len(productlist)):
time.sleep(35)
time.sleep(5)
company = productlist[x].get('id').get('company')
product = productlist[x].get('id').get('product')
url = 'https://api.update.ledvance.com/v1/zigbee/firmwares/download/%s/%s/latest' % (company, product)
+1 -1
View File
@@ -14,7 +14,7 @@ response = json.loads(response.content)
productlist = response['products']
for x in range(len(productlist)):
time.sleep(35)
time.sleep(5)
company = productlist[x].get('id').get('company')
product = productlist[x].get('id').get('product')
url = 'https://api.update.ledvance.com/v1/zigbee/firmwares/download/%s/%s/latest' % (company, product)