-
Notifications
You must be signed in to change notification settings - Fork 220
Open
Description
Hi there,
I was attempting to download videos from the API locally - it wasn't working so I ran some debugging and the issue was with the lines:
for dID in mappingCamDevice.keys():
mappingCamDevice[dID.upper()] = mappingCamDevice.pop(dID)
within the download_videos_from_server function, it worked once I replaced it with:
mappingCamDevice = {k.upper():v for k,v in mappingCamDevice.items()}
Currently running on 3.9.21 so maybe it's a non-issue, but hoping it's helpful.
Metadata
Metadata
Assignees
Labels
No labels